diff options
Diffstat (limited to 'stm_test.go')
-rw-r--r-- | stm_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stm_test.go b/stm_test.go index 44ca40b..b6ecb16 100644 --- a/stm_test.go +++ b/stm_test.go @@ -131,7 +131,7 @@ func TestSelect(t *testing.T) { select { case <-c: t.Fatal("empty Select did not block forever") - case <-time.After(10*time.Millisecond): + case <-time.After(10 * time.Millisecond): } // with one arg, Select adds no effect |