diff --git a/testy/clock.go b/testy/clock.go index 9bf77530a..8608a69e2 100644 --- a/testy/clock.go +++ b/testy/clock.go @@ -32,6 +32,8 @@ func (c *Clock) Now() time.Time { defer c.Unlock() if c.Start.IsZero() { c.Start = time.Now() + } + if c.Present.Before(c.Start) { c.Present = c.Start } step := c.Step