Skip to content

Commit f943100

Browse files
committed
Fix wildcard imports
Silly intellij config is being overriden at the moment...
1 parent 8db51cd commit f943100

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

x-pack/plugin/security/src/test/java/org/elasticsearch/xpack/security/SecurityInfoTransportActionTests.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,13 @@
3939

4040
import static org.hamcrest.CoreMatchers.nullValue;
4141
import static org.hamcrest.Matchers.contains;
42-
import static org.hamcrest.Matchers.*;
42+
import static org.hamcrest.Matchers.emptyIterable;
43+
import static org.hamcrest.Matchers.notNullValue;
4344
import static org.hamcrest.core.Is.is;
4445
import static org.mockito.Matchers.any;
45-
import static org.mockito.Mockito.*;
46+
import static org.mockito.Mockito.doAnswer;
47+
import static org.mockito.Mockito.mock;
48+
import static org.mockito.Mockito.when;
4649

4750
public class SecurityInfoTransportActionTests extends ESTestCase {
4851

0 commit comments

Comments
 (0)