Skip to content

Commit

Permalink
Minor correction
Browse files Browse the repository at this point in the history
  • Loading branch information
Chandra Addala committed Apr 15, 2016
1 parent 7bac231 commit 7b815ea
Showing 1 changed file with 1 addition and 3 deletions.
Expand Up @@ -124,13 +124,11 @@ public void testClearFromRunningSetsLastRollupTime() {
// given
SlotKey next = ctx.getNextScheduled();

UpdateStamp stamp = mgr.getUpdateStamp(SlotKey.of(gran, slot, shard));

// when
ctx.clearFromRunning(next);

// then
stamp = mgr.getUpdateStamp(next);
UpdateStamp stamp = mgr.getUpdateStamp(next);
Assert.assertNotNull(stamp);
Assert.assertEquals(UpdateStamp.State.Rolled, stamp.getState());
Assert.assertEquals(updateTime, stamp.getTimestamp());
Expand Down

0 comments on commit 7b815ea

Please sign in to comment.