aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-utils
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2018-03-05 09:28:12 +0100
committerJon Bratseth <bratseth@oath.com>2018-03-05 09:28:12 +0100
commitd79750502d379bf4025373e2de77353a2cab61f3 (patch)
treeeba731d22e66a3a6d590c0b73b16c8478f6145ef /clustercontroller-utils
parent3844b4dbcc5e03489e82924ac2e1707897f9e43e (diff)
No wildcard static imports
Diffstat (limited to 'clustercontroller-utils')
-rw-r--r--clustercontroller-utils/src/test/java/com/yahoo/vespa/clustercontroller/utils/communication/http/AsyncHttpClientWithBaseTest.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/clustercontroller-utils/src/test/java/com/yahoo/vespa/clustercontroller/utils/communication/http/AsyncHttpClientWithBaseTest.java b/clustercontroller-utils/src/test/java/com/yahoo/vespa/clustercontroller/utils/communication/http/AsyncHttpClientWithBaseTest.java
index d943c8d96f0..0175eab84c2 100644
--- a/clustercontroller-utils/src/test/java/com/yahoo/vespa/clustercontroller/utils/communication/http/AsyncHttpClientWithBaseTest.java
+++ b/clustercontroller-utils/src/test/java/com/yahoo/vespa/clustercontroller/utils/communication/http/AsyncHttpClientWithBaseTest.java
@@ -5,7 +5,9 @@ import com.yahoo.vespa.clustercontroller.utils.communication.async.AsyncOperatio
import com.yahoo.vespa.clustercontroller.utils.communication.async.AsyncOperationImpl;
import org.junit.Test;
-import static org.junit.Assert.*;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotSame;
+import static org.junit.Assert.fail;
public class AsyncHttpClientWithBaseTest {