diff options
author | Jim Hahn <jrh3@att.com> | 2021-06-25 13:09:00 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2021-06-25 13:10:04 -0400 |
commit | 1a4b8b99c9903847640363b36beceffcfe44e1ac (patch) | |
tree | 3b4757639c92faa751689421666ecd7dced36671 /main/src/test/java/org | |
parent | bcb522a96d60e6b50383645f870100a72ee11db7 (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')
-rw-r--r-- | main/src/test/java/org/onap/policy/pap/main/parameters/TestPdpParameters.java | 2 |
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()); |