From cf3dc2f8a55f2499f1385f6c5f47522b41cf25b3 Mon Sep 17 00:00:00 2001 From: Nicolas Lacasse Date: Tue, 2 Oct 2018 11:35:41 -0700 Subject: Fix compilation bug. Docker.Run only returns a single argument. PiperOrigin-RevId: 215427309 Change-Id: I1eebbc628853ca57f79d25e18d4f04dfa5a2a003 --- runsc/test/integration/exec_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runsc/test/integration') diff --git a/runsc/test/integration/exec_test.go b/runsc/test/integration/exec_test.go index ddd088223..014254aab 100644 --- a/runsc/test/integration/exec_test.go +++ b/runsc/test/integration/exec_test.go @@ -69,7 +69,7 @@ func TestExecJobControl(t *testing.T) { d := testutil.MakeDocker("exec-test") // Start the container. - if _, err := d.Run("alpine", "sleep", "1000"); err != nil { + if err := d.Run("alpine", "sleep", "1000"); err != nil { t.Fatalf("docker run failed: %v", err) } defer d.CleanUp() -- cgit v1.2.3