summaryrefslogtreecommitdiffstats
path: root/feature-distributed-locking
diff options
context:
space:
mode:
authorLiam Fallon <liam.fallon@est.tech>2020-06-16 07:01:36 +0000
committerGerrit Code Review <gerrit@onap.org>2020-06-16 07:01:36 +0000
commit1fdba85a145be36060262d4575995a7752d7a396 (patch)
tree55de7f679aa4e46bc6244d280c276387e08a4017 /feature-distributed-locking
parent6218853b9a001ef74300ab7d243685950ef32ad6 (diff)
parent6e22f6ba5a83c8e55bec56798e8e4c7a3d4b002b (diff)
Merge "reduce sonar issue - 2 rev"
Diffstat (limited to 'feature-distributed-locking')
-rw-r--r--feature-distributed-locking/src/test/java/org/onap/policy/distributed/locking/DistributedLockManagerTest.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/feature-distributed-locking/src/test/java/org/onap/policy/distributed/locking/DistributedLockManagerTest.java b/feature-distributed-locking/src/test/java/org/onap/policy/distributed/locking/DistributedLockManagerTest.java
index 5a0c6f77..48152715 100644
--- a/feature-distributed-locking/src/test/java/org/onap/policy/distributed/locking/DistributedLockManagerTest.java
+++ b/feature-distributed-locking/src/test/java/org/onap/policy/distributed/locking/DistributedLockManagerTest.java
@@ -27,6 +27,7 @@ import static org.assertj.core.api.Assertions.assertThatThrownBy;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertNotSame;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue;
@@ -676,7 +677,7 @@ public class DistributedLockManagerTest {
// new lock should succeed
DistributedLock lock2 = getLock(RESOURCE, OWNER_KEY, HOLD_SEC, callback, false);
- assertTrue(lock2 != lock);
+ assertNotSame(lock2, lock);
assertTrue(lock2.isWaiting());
}