summaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin/src/test/java/com/yahoo/document/restapi/DocumentApiApplicationTest.java
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2019-07-11 13:15:00 +0200
committergjoranv <gv@verizonmedia.com>2019-07-11 13:15:00 +0200
commitf6c6b8a282cc1a53623ad2ee060b4e32f5f45bdc (patch)
tree3b31f6f66859cf8abf10351d6e8910a44ccbb6b4 /vespaclient-container-plugin/src/test/java/com/yahoo/document/restapi/DocumentApiApplicationTest.java
parent30500e22e144b82ea547f73312cfd63ade630a35 (diff)
Replace 'jdisc' with 'container' in vespaclient-container-plugin
Diffstat (limited to 'vespaclient-container-plugin/src/test/java/com/yahoo/document/restapi/DocumentApiApplicationTest.java')
-rw-r--r--vespaclient-container-plugin/src/test/java/com/yahoo/document/restapi/DocumentApiApplicationTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/vespaclient-container-plugin/src/test/java/com/yahoo/document/restapi/DocumentApiApplicationTest.java b/vespaclient-container-plugin/src/test/java/com/yahoo/document/restapi/DocumentApiApplicationTest.java
index 6bca3637297..b303e663f32 100644
--- a/vespaclient-container-plugin/src/test/java/com/yahoo/document/restapi/DocumentApiApplicationTest.java
+++ b/vespaclient-container-plugin/src/test/java/com/yahoo/document/restapi/DocumentApiApplicationTest.java
@@ -17,10 +17,10 @@ public class DocumentApiApplicationTest {
@Test
public void application_with_document_api() throws IOException {
String services =
- "<jdisc version='1.0'>" +
+ "<container version='1.0'>" +
" <http><server port=\"" + findRandomOpenPortOnAllLocalInterfaces() + "\" id=\"foobar\"/></http>" +
" <document-api/>" +
- "</jdisc>";
+ "</container>";
try (Application application = Application.fromServicesXml(services, Networking.enable)) {
}
}