Skip to content
Snippets Groups Projects
Commit 102ce839 authored by Ramin Yaghoubzadeh Torky's avatar Ramin Yaghoubzadeh Torky
Browse files

Java: BB handler test expects one update for remote change, not 2 (rfc!)

parent 21a5126f
No related branches found
No related tags found
No related merge requests found
...@@ -87,7 +87,8 @@ public class BlackboardIntegrationTest ...@@ -87,7 +87,8 @@ public class BlackboardIntegrationTest
bb.put("key3","value3"); bb.put("key3","value3");
Thread.sleep(200); Thread.sleep(200);
bbc.put("key3","value4"); bbc.put("key3","value4");
verify(mockListener,times(2)).update(); verify(mockListener,times(1)).update(); // RY: why was this set to 2 before?? 1 update is local
// changed to one (one is also emitted atm)
} }
@Test @Test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment