diff options
author | Kanagaraj Manickam <kanagaraj.manickam@huawei.com> | 2022-04-08 04:25:07 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-04-08 04:25:07 +0000 |
commit | 3c5930e0d61f3f0b0eec57c20a2b82a6838ad70e (patch) | |
tree | cfe8bc1df287c035ecd566916d3ce9f955542700 /framework | |
parent | a94a9d330d17b1076d4576249348d33ff0443e6a (diff) | |
parent | f9a80db4bbb5323d55a7a4fd996ddff2038d2509 (diff) |
Merge "simplified an assertion."
Diffstat (limited to 'framework')
-rw-r--r-- | framework/src/test/java/org/onap/cli/fw/input/cache/OnapCommandParameterCacheTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/src/test/java/org/onap/cli/fw/input/cache/OnapCommandParameterCacheTest.java b/framework/src/test/java/org/onap/cli/fw/input/cache/OnapCommandParameterCacheTest.java index e4dafba8..462d2793 100644 --- a/framework/src/test/java/org/onap/cli/fw/input/cache/OnapCommandParameterCacheTest.java +++ b/framework/src/test/java/org/onap/cli/fw/input/cache/OnapCommandParameterCacheTest.java @@ -22,7 +22,7 @@ import java.io.IOException; import org.apache.commons.io.FileUtils; import org.junit.Test; -import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertNotEquals; public class OnapCommandParameterCacheTest { @Test @@ -31,7 +31,7 @@ public class OnapCommandParameterCacheTest { FileUtils.touch(new File("data" + File.separator + "test-profile.json")); File test_profile = new File("data" + File.separator + "test-profile.json"); FileUtils.touch(test_profile); - assertFalse(0 == test_profile.lastModified()); + assertNotEquals(0, test_profile.lastModified()); //assertTrue(OnapCommandProfileStore.getInstance().getProfiles().contains("test")); // FileUtils.cleanDirectory(new File("data")); } |