From 6498c4430feaa939dc3e385d5ba064e20e9b73ff Mon Sep 17 00:00:00 2001 From: Darshit Chanpura Date: Fri, 10 Jan 2025 15:07:10 -0500 Subject: [PATCH] Fixes checkstyle errors Signed-off-by: Darshit Chanpura --- .../security/resources/RecipientTypeRegistryTests.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/test/java/org/opensearch/security/resources/RecipientTypeRegistryTests.java b/src/test/java/org/opensearch/security/resources/RecipientTypeRegistryTests.java index 725b430752..47151898d1 100644 --- a/src/test/java/org/opensearch/security/resources/RecipientTypeRegistryTests.java +++ b/src/test/java/org/opensearch/security/resources/RecipientTypeRegistryTests.java @@ -12,7 +12,9 @@ import org.opensearch.security.test.SingleClusterTest; -import static org.hamcrest.Matchers.*; +import static org.hamcrest.Matchers.equalTo; +import static org.hamcrest.Matchers.is; +import static org.hamcrest.Matchers.notNullValue; import static org.junit.Assert.assertThrows; public class RecipientTypeRegistryTests extends SingleClusterTest {