From 89831581d80ef8c9098e1ba4e3e00b981107fe05 Mon Sep 17 00:00:00 2001 From: Darshit Chanpura Date: Wed, 6 Nov 2024 12:50:56 -0500 Subject: [PATCH] Replaces * import with single line Signed-off-by: Darshit Chanpura --- .../java/org/opensearch/security/rest/WhoAmITests.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/integrationTest/java/org/opensearch/security/rest/WhoAmITests.java b/src/integrationTest/java/org/opensearch/security/rest/WhoAmITests.java index 742ea89a16..a614eb4096 100644 --- a/src/integrationTest/java/org/opensearch/security/rest/WhoAmITests.java +++ b/src/integrationTest/java/org/opensearch/security/rest/WhoAmITests.java @@ -43,7 +43,10 @@ import joptsimple.internal.Strings; import static org.hamcrest.MatcherAssert.assertThat; -import static org.hamcrest.Matchers.*; +import static org.hamcrest.Matchers.containsString; +import static org.hamcrest.Matchers.equalTo; +import static org.hamcrest.Matchers.greaterThan; +import static org.hamcrest.Matchers.lessThan; import static org.opensearch.rest.RestRequest.Method.GET; import static org.opensearch.security.auditlog.impl.AuditCategory.GRANTED_PRIVILEGES; import static org.opensearch.security.auditlog.impl.AuditCategory.MISSING_PRIVILEGES;