diff options
author | Martin <marcin.j.chrzanowski@gmail.com> | 2020-01-11 21:22:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-11 21:22:59 +0100 |
commit | 100e3d23b47d9d772d64dd0c7e596cd20de218b9 (patch) | |
tree | 993075dc9df26b3e3206d9d4a075e0adb83e586d /src/test/java/pl/edu/mimuw/cloudatlas/agent/modules/GossipGirlTest.java | |
parent | 9cf66b17165e3b4251dce84500e60f5ef090ba30 (diff) | |
parent | 0feb481f6dac0a7318b6d57f11574f2aaa658ef7 (diff) |
Merge pull request #103 from m-chrzan/use-fallbacks
Fix things
Diffstat (limited to 'src/test/java/pl/edu/mimuw/cloudatlas/agent/modules/GossipGirlTest.java')
-rw-r--r-- | src/test/java/pl/edu/mimuw/cloudatlas/agent/modules/GossipGirlTest.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/java/pl/edu/mimuw/cloudatlas/agent/modules/GossipGirlTest.java b/src/test/java/pl/edu/mimuw/cloudatlas/agent/modules/GossipGirlTest.java index a812e61..5fac535 100644 --- a/src/test/java/pl/edu/mimuw/cloudatlas/agent/modules/GossipGirlTest.java +++ b/src/test/java/pl/edu/mimuw/cloudatlas/agent/modules/GossipGirlTest.java @@ -8,6 +8,7 @@ import static org.hamcrest.CoreMatchers.hasItems; import java.net.InetAddress; import java.util.AbstractMap.SimpleImmutableEntry; import java.util.HashMap; +import java.util.HashSet; import java.util.Map; import java.util.Map.Entry; import java.util.Set; @@ -77,7 +78,7 @@ public class GossipGirlTest { testTime = ValueUtils.currentTime(); setupHierarchy(); setupQueries(); - stateMessage = new StateMessage("", ModuleType.GOSSIP, 0, 0, initiatorHierarchy, initiatorQueries); + stateMessage = new StateMessage("", ModuleType.GOSSIP, 0, 0, initiatorHierarchy, initiatorQueries, new HashSet()); Map<PathName, ValueTime> otherZoneTimestamps = makeOtherZoneTimestamps(); Map<Attribute, ValueTime> otherQueryTimestamps = makeOtherQueryTimestamps(); |