From 8ac16ad8c2c4470526509836c9022ab41975d0cd Mon Sep 17 00:00:00 2001 From: Derek Ho Date: Tue, 29 Aug 2023 12:48:01 -0400 Subject: [PATCH] reorder the imports Signed-off-by: Derek Ho --- .../security/privileges/PrivilegesEvaluatorUnitTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/opensearch/security/privileges/PrivilegesEvaluatorUnitTest.java b/src/test/java/org/opensearch/security/privileges/PrivilegesEvaluatorUnitTest.java index 1019fc53b0..811c817b65 100644 --- a/src/test/java/org/opensearch/security/privileges/PrivilegesEvaluatorUnitTest.java +++ b/src/test/java/org/opensearch/security/privileges/PrivilegesEvaluatorUnitTest.java @@ -17,8 +17,8 @@ import static org.hamcrest.Matchers.equalTo; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; -import static org.opensearch.security.privileges.PrivilegesEvaluator.isClusterPerm; import static org.opensearch.security.privileges.PrivilegesEvaluator.DNFOF_MATCHER; +import static org.opensearch.security.privileges.PrivilegesEvaluator.isClusterPerm; public class PrivilegesEvaluatorUnitTest {