aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/test/java/org/onap
diff options
context:
space:
mode:
authorJim Hahn <jrh3@att.com>2021-06-25 13:09:00 -0400
committerJim Hahn <jrh3@att.com>2021-06-25 13:10:04 -0400
commit1a4b8b99c9903847640363b36beceffcfe44e1ac (patch)
tree3b4757639c92faa751689421666ecd7dced36671 /main/src/test/java/org/onap
parentbcb522a96d60e6b50383645f870100a72ee11db7 (diff)
Fix broken junits
Some junits are broken since adding the expiration timer. Changed the length of the heartbeat in an attempt to fix it. Issue-ID: POLICY-3407 Change-Id: I81046476e243a0bf20ae9db9259be4464418e73e Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'main/src/test/java/org/onap')
-rw-r--r--main/src/test/java/org/onap/policy/pap/main/parameters/TestPdpParameters.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/test/java/org/onap/policy/pap/main/parameters/TestPdpParameters.java b/main/src/test/java/org/onap/policy/pap/main/parameters/TestPdpParameters.java
index 6f398c6f..19192dad 100644
--- a/main/src/test/java/org/onap/policy/pap/main/parameters/TestPdpParameters.java
+++ b/main/src/test/java/org/onap/policy/pap/main/parameters/TestPdpParameters.java
@@ -48,7 +48,7 @@ public class TestPdpParameters {
assertNotNull(state);
assertEquals(5, state.getMaxWaitMs());
- assertEquals(6L, params.getHeartBeatMs());
+ assertEquals(6000L, params.getHeartBeatMs());
assertEquals(20000L, params.getMaxMessageAgeMs());