diff --git a/delayed/delayed_test.go b/delayed/delayed_test.go index 4519f82..f1ba769 100644 --- a/delayed/delayed_test.go +++ b/delayed/delayed_test.go @@ -27,5 +27,7 @@ func TestDelayed(t *testing.T) { } func TestDelayedAll(t *testing.T) { - dstest.SubtestAll(t, New(datastore.NewMapDatastore(), delay.Fixed(time.Millisecond))) + // Delay for virtually no time, we just want to make sure this works correctly, not that it + // delays anything. + dstest.SubtestAll(t, New(datastore.NewMapDatastore(), delay.Fixed(time.Nanosecond))) }