diff options
Diffstat (limited to 'util/lamport/clock_testing.go')
-rw-r--r-- | util/lamport/clock_testing.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/lamport/clock_testing.go b/util/lamport/clock_testing.go index fc59afb2..4bf6d2bf 100644 --- a/util/lamport/clock_testing.go +++ b/util/lamport/clock_testing.go @@ -11,7 +11,7 @@ func testClock(t *testing.T, c Clock) { val, err := c.Increment() assert.NoError(t, err) - assert.Equal(t, Time(1), val) + assert.Equal(t, Time(2), val) assert.Equal(t, Time(2), c.Time()) err = c.Witness(41) |