Skip to content

Commit

Permalink
[Tests] Correct map lookup in ReplicationTrackerTests (#34565)
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Büscher committed Oct 18, 2018
1 parent d45b304 commit c666ba0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public void testGlobalCheckpointUpdate() {

// first check that adding it without the master blessing doesn't change anything.
updateLocalCheckpoint(tracker, extraId.getId(), minLocalCheckpointAfterUpdates + 1 + randomInt(4));
assertNull(tracker.checkpoints.get(extraId));
assertNull(tracker.checkpoints.get(extraId.getId()));
expectThrows(IllegalStateException.class, () -> tracker.initiateTracking(extraId.getId()));

Set<AllocationId> newInitializing = new HashSet<>(initializing);
Expand Down

0 comments on commit c666ba0

Please sign in to comment.