We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 006ea6b commit 596b37fCopy full SHA for 596b37f
delayed/delayed_test.go
@@ -27,5 +27,7 @@ func TestDelayed(t *testing.T) {
27
}
28
29
func TestDelayedAll(t *testing.T) {
30
- 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
31
+ // delays anything.
32
+ dstest.SubtestAll(t, New(datastore.NewMapDatastore(), delay.Fixed(time.Nanosecond)))
33
0 commit comments