aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/dmaap/dbcapi/resources/DR_NodeResourceTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/org/onap/dmaap/dbcapi/resources/DR_NodeResourceTest.java')
-rw-r--r--src/test/java/org/onap/dmaap/dbcapi/resources/DR_NodeResourceTest.java13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/test/java/org/onap/dmaap/dbcapi/resources/DR_NodeResourceTest.java b/src/test/java/org/onap/dmaap/dbcapi/resources/DR_NodeResourceTest.java
index 856a789..f131d8f 100644
--- a/src/test/java/org/onap/dmaap/dbcapi/resources/DR_NodeResourceTest.java
+++ b/src/test/java/org/onap/dmaap/dbcapi/resources/DR_NodeResourceTest.java
@@ -128,19 +128,6 @@ public class DR_NodeResourceTest {
}
@Test
- public void updateDr_Node_shouldReturnError_whenNoExistingFqdnProvided() {
- DR_Node node = new DR_Node("fqdn", "location", "hostName", "1.0");
- Entity<DR_Node> requestedEntity = entity(node, APPLICATION_JSON);
-
- Response response = testContainer.target("dr_nodes")
- .path("")
- .request()
- .put(requestedEntity, Response.class);
-
- assertEquals(405, response.getStatus());
- }
-
- @Test
public void updateDr_Node_shouldReturnError_whenDrNodeForUpdateDoesNotExistInDb() {
DR_Node node = new DR_Node("fqdn", "location", "hostName", "1.0");
Entity<DR_Node> requestedEntity = entity(node, APPLICATION_JSON);