From fe302fbfd26fc7db5d751d4bec8a0bd4ce6030a4 Mon Sep 17 00:00:00 2001 From: Josh Poimboeuf Date: Tue, 12 Nov 2013 14:16:51 -0600 Subject: [PATCH] test: 2 second timeout (not 2000) --- integration/commands_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/commands_test.go b/integration/commands_test.go index ab186f4a2c..440d8e5469 100644 --- a/integration/commands_test.go +++ b/integration/commands_test.go @@ -329,7 +329,7 @@ func TestRunDisconnectTty(t *testing.T) { // Client disconnect after run -i should keep stdin out in TTY mode container := globalRuntime.List()[0] - setTimeout(t, "Read/Write assertion timed out", 2000*time.Second, func() { + setTimeout(t, "Read/Write assertion timed out", 2*time.Second, func() { if err := assertPipe("hello\n", "hello", stdout, stdinPipe, 15); err != nil { t.Fatal(err) }