You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fixes#5fixes#6
Fixes the mock TickerFunc to behave like the real one in that it won't run more than one callback at a time and will wait until the callback completes to return from a `Wait()` call.
The real implementation of ticker func looks like this:
One property of this construction is that
Wait()
cannot return whilet.f()
is in progress, even if the context is done.The mock ticker function doesn't share this property, and
Wait()
will return immediately on context done.The text was updated successfully, but these errors were encountered: