summaryrefslogtreecommitdiffstats
path: root/orchestrator
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2021-01-11 09:41:58 +0100
committerGitHub <noreply@github.com>2021-01-11 09:41:58 +0100
commite74e795a6d68fdf016779a4ca4071de09d74195a (patch)
treea676c645fb387c8d6d0e237545b72c89bf97b974 /orchestrator
parente8921cf5e953e0abef58ace4cbdbb1877130d274 (diff)
Remove debug code
Diffstat (limited to 'orchestrator')
-rw-r--r--orchestrator/src/test/java/com/yahoo/vespa/orchestrator/resources/ApplicationSuspensionResourceTest.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/resources/ApplicationSuspensionResourceTest.java b/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/resources/ApplicationSuspensionResourceTest.java
index 770cb7f35d2..4035e29d91a 100644
--- a/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/resources/ApplicationSuspensionResourceTest.java
+++ b/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/resources/ApplicationSuspensionResourceTest.java
@@ -91,7 +91,6 @@ public class ApplicationSuspensionResourceTest {
@Test
public void delete_works_on_suspended_and_not_suspended_applications() {
// Delete an application that is not suspended
- var v = webTarget.path(RESOURCE_1).request();
Response reply = webTarget.path(RESOURCE_1).request().delete();
assertEquals(204, reply.getStatus());
@@ -115,7 +114,6 @@ public class ApplicationSuspensionResourceTest {
@Test
public void list_applications_returns_the_correct_list_of_suspended_applications() {
// Test that initially we have the empty set
- var v = webTarget.request(MediaType.APPLICATION_JSON);
Response reply = webTarget.request(MediaType.APPLICATION_JSON).get();
assertEquals(200, reply.getStatus());
assertEquals("[]", reply.readEntity(String.class));