summaryrefslogtreecommitdiffstats
path: root/jdisc_http_service/src/test/java/com/yahoo/jdisc/http/HttpHeadersTestCase.java
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2019-04-29 15:46:27 +0200
committerBjørn Christian Seime <bjorncs@verizonmedia.com>2019-04-29 15:47:03 +0200
commit02c1801e9e0541e4294a69c90b812866aea6a842 (patch)
tree0b556d404b2b82002703b3705b688f27a5cdb916 /jdisc_http_service/src/test/java/com/yahoo/jdisc/http/HttpHeadersTestCase.java
parent4294fc450f4120a438b1d663c611080f27580bea (diff)
Replace use of testng with junit
Diffstat (limited to 'jdisc_http_service/src/test/java/com/yahoo/jdisc/http/HttpHeadersTestCase.java')
-rw-r--r--jdisc_http_service/src/test/java/com/yahoo/jdisc/http/HttpHeadersTestCase.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/jdisc_http_service/src/test/java/com/yahoo/jdisc/http/HttpHeadersTestCase.java b/jdisc_http_service/src/test/java/com/yahoo/jdisc/http/HttpHeadersTestCase.java
index 120a1c5049c..d8ce4a6da0c 100644
--- a/jdisc_http_service/src/test/java/com/yahoo/jdisc/http/HttpHeadersTestCase.java
+++ b/jdisc_http_service/src/test/java/com/yahoo/jdisc/http/HttpHeadersTestCase.java
@@ -1,9 +1,9 @@
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.http;
-import org.testng.annotations.Test;
+import org.junit.Test;
-import static org.testng.AssertJUnit.assertEquals;
+import static org.junit.Assert.assertEquals;
/**
* @author Simon Thoresen Hult