summaryrefslogtreecommitdiffstatshomepage
path: root/util/lamport/clock_testing.go
diff options
context:
space:
mode:
Diffstat (limited to 'util/lamport/clock_testing.go')
-rw-r--r--util/lamport/clock_testing.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/lamport/clock_testing.go b/util/lamport/clock_testing.go
index 4bf6d2bf..de66c5c9 100644
--- a/util/lamport/clock_testing.go
+++ b/util/lamport/clock_testing.go
@@ -14,11 +14,11 @@ func testClock(t *testing.T, c Clock) {
assert.Equal(t, Time(2), val)
assert.Equal(t, Time(2), c.Time())
- err = c.Witness(41)
+ err = c.Witness(42)
assert.NoError(t, err)
assert.Equal(t, Time(42), c.Time())
- err = c.Witness(41)
+ err = c.Witness(42)
assert.NoError(t, err)
assert.Equal(t, Time(42), c.Time())