diff options
Diffstat (limited to 'flow-cleaner_test.go')
-rw-r--r-- | flow-cleaner_test.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/flow-cleaner_test.go b/flow-cleaner_test.go index ac8e357..0c01c1c 100644 --- a/flow-cleaner_test.go +++ b/flow-cleaner_test.go @@ -35,7 +35,9 @@ func testProcessFromStdin(t *testing.T, cfg *Config) { go func() { for i := 0; i < 3; i++ { fakeStdin(t, stdin) - //time.Sleep(3 * time.Minute) + if i < 2 { + time.Sleep(3 * time.Minute) + } } close(stdin) }() |