Commit 1221b093 authored by Spiros Koulouzis's avatar Spiros Koulouzis

replaced with assertNotNull

parent a68b7a83
...@@ -146,7 +146,7 @@ public class CloudStormServiceTest { ...@@ -146,7 +146,7 @@ public class CloudStormServiceTest {
System.out.println("writeCloudStormTopologyFiles"); System.out.println("writeCloudStormTopologyFiles");
CloudStormService instance = getService(messageExampleProvisioneRequestFilePath); CloudStormService instance = getService(messageExampleProvisioneRequestFilePath);
Map<String, Object> result = instance.writeCloudStormTopologyFiles(tempInputDirPath); Map<String, Object> result = instance.writeCloudStormTopologyFiles(tempInputDirPath);
assertNull(result); assertNotNull(result);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment