commit | d935b630ace621031c62ef2d036933b47b09abd2 | [log] [tgz] |
---|---|---|
author | Charles Chan <rascov@gmail.com> | Thu Jan 03 16:49:01 2019 -0800 |
committer | Charles Chan <charles@opennetworking.org> | Fri Jan 04 21:40:18 2019 +0000 |
tree | dad2a0e6dd0396c4b2a2cbea3d5a76e821089a35 | |
parent | 352bae83770bc7643a65d19d12c601d105cd6c58 [diff] |
Attempt to fix unit test The execution time was originally set to a value that is too close to the timeout. Therefore, there is chance that it will actually make it in time. The purpose of this patch is to further delayed the execution time and therefore get a better chance to create a true timeout. Change-Id: Ib975db43b5f6d90cd91d0e44ee4cedcfd9c3cc6e
diff --git a/core/net/src/test/java/org/onosproject/net/flowobjective/impl/InOrderFlowObjectiveManagerTest.java b/core/net/src/test/java/org/onosproject/net/flowobjective/impl/InOrderFlowObjectiveManagerTest.java index 44cd39f..a312b29 100644 --- a/core/net/src/test/java/org/onosproject/net/flowobjective/impl/InOrderFlowObjectiveManagerTest.java +++ b/core/net/src/test/java/org/onosproject/net/flowobjective/impl/InOrderFlowObjectiveManagerTest.java
@@ -261,7 +261,7 @@ replay(mgr.flowObjectiveStore); // Force this objective to time out - offset = mgr.objTimeoutMs * 2; + offset = mgr.objTimeoutMs * 3; expectFwdObjsTimeout.forEach(fwdObj -> mgr.forward(DEV1, fwdObj));