summaryrefslogtreecommitdiffstats
path: root/application/src
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2016-09-28 16:04:55 +0200
committerJon Bratseth <bratseth@yahoo-inc.com>2016-09-28 16:04:55 +0200
commit9192aa0bad75c648ebfe52b3d8fb310b084f076a (patch)
tree823545108eafc454342f1969361b8f99e49681d6 /application/src
parent25fa21e679ab3a20a15f602f17d4a42de0fafb07 (diff)
Correct dependencies by moving document-api test to vespaclient-container-plugin
Diffstat (limited to 'application/src')
-rw-r--r--application/src/test/java/com/yahoo/application/ApplicationTest.java10
1 files changed, 0 insertions, 10 deletions
diff --git a/application/src/test/java/com/yahoo/application/ApplicationTest.java b/application/src/test/java/com/yahoo/application/ApplicationTest.java
index 1b9815dc536..7b515cb843b 100644
--- a/application/src/test/java/com/yahoo/application/ApplicationTest.java
+++ b/application/src/test/java/com/yahoo/application/ApplicationTest.java
@@ -365,16 +365,6 @@ public class ApplicationTest {
}
}
- @Test
- public void application_with_document_api() {
- String services =
- "<container version='1.0'>" +
- " <document-api/>" +
- "</container>";
- try (Application application = Application.fromServicesXml(services, Networking.enable)) {
- }
- }
-
private static int getFreePort() throws IOException {
try (ServerSocket socket = new ServerSocket(0)) {
socket.setReuseAddress(true);