diff options
author | Bharath Balasubramanian <bharathb@research.att.com> | 2018-03-19 02:18:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-03-19 02:18:27 +0000 |
commit | c3831578e0d0abb97a4725d3e01e0211dbb53e87 (patch) | |
tree | ba8394b7604d24ac6b346e5c571486b0d3673cff | |
parent | c3b32d4f9e681115e061b5d3a907363a346b1f40 (diff) | |
parent | 5538377ed71c1e3519a2fe7b7ee50185f4764675 (diff) |
Merge "CLM Fixes"
-rwxr-xr-x | pom.xml | 7 | ||||
-rw-r--r-- | src/test/java/org/onap/music/unittests/TestRestMusicData.java | 2 |
2 files changed, 7 insertions, 2 deletions
@@ -305,7 +305,12 @@ <scope>test</scope> </dependency> <!-- /Testing --> - + + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>2.9.4</version> + </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> diff --git a/src/test/java/org/onap/music/unittests/TestRestMusicData.java b/src/test/java/org/onap/music/unittests/TestRestMusicData.java index c5dc69f6..5d51c4de 100644 --- a/src/test/java/org/onap/music/unittests/TestRestMusicData.java +++ b/src/test/java/org/onap/music/unittests/TestRestMusicData.java @@ -90,7 +90,7 @@ public class TestRestMusicData { public static void init() throws Exception { try { MusicCore.mDstoreHandle = CassandraCQL.connectToEmbeddedCassandra(); - zkServer = new TestingServer(2181, new File(" mp/zk")); + zkServer = new TestingServer(2181, new File("/tmp/zk")); MusicCore.mLockHandle = new MusicLockingService(); } catch (Exception e) { e.printStackTrace(); |