From 3c86680e532b959bd637b6c093b3916ae5bcee11 Mon Sep 17 00:00:00 2001 From: "Thomas Nelson Jr (arthurdent3) tn1381@att.com" Date: Tue, 13 Mar 2018 20:10:04 -0400 Subject: Docker update and POM fix Update the docker for cassandra to change ownership of imported files. Update the POM to fix bug Numerous bug fixes fro Logging and Error reporting. Change-Id: I518807f9796734134341ebefd109219050a84b51 Issue-ID: MUSIC-56, MUSIC-57, MUSIC-58 Signed-off-by: Thomas Nelson Jr (arthurdent3) tn1381@att.com --- src/test/java/org/onap/music/unittests/MusicUtilTest.java | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'src/test/java/org/onap/music/unittests/MusicUtilTest.java') diff --git a/src/test/java/org/onap/music/unittests/MusicUtilTest.java b/src/test/java/org/onap/music/unittests/MusicUtilTest.java index 47edc1e3..b117c330 100644 --- a/src/test/java/org/onap/music/unittests/MusicUtilTest.java +++ b/src/test/java/org/onap/music/unittests/MusicUtilTest.java @@ -204,14 +204,4 @@ public class MusicUtilTest { assertTrue(result.contains("value")); } - @Test - public void testSetErrorResponse() { - Map myMap = new HashMap<>(); - myMap.put("name","tom"); - Map> result = MusicUtil.setErrorResponse(new MusicServiceException("This is the error")); - Map testMap = (Map) result.get("result"); - Map error = (Map) testMap.get("error"); - assertTrue(error.containsKey("error-description")); - } - } -- cgit 1.2.3-korg