From bf20f56615eb0f7218e7e07610d53551bd79ee4b Mon Sep 17 00:00:00 2001 From: Kenfe-Mickael Laventure Date: Mon, 28 Mar 2016 10:40:33 -0700 Subject: [PATCH] Rename busybox-NoSuchFile test bundle to busybox-no-such-file Signed-off-by: Kenfe-Mickael Laventure --- integration-test/start_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-test/start_test.go b/integration-test/start_test.go index 8d1af0876..161ff9f0c 100644 --- a/integration-test/start_test.go +++ b/integration-test/start_test.go @@ -40,11 +40,11 @@ var func (cs *ContainerdSuite) TestStartBusyboxNoSuchFile(t *check.C) { expectedOutput := `oci runtime error: exec: \"NoSuchFile\": executable file not found in $PATH` - if err := CreateBusyboxBundle("busybox-NoSuchFile", []string{"NoSuchFile"}); err != nil { + if err := CreateBusyboxBundle("busybox-no-such-file", []string{"NoSuchFile"}); err != nil { t.Fatal(err) } - _, err := cs.RunContainer("NoSuchFile", "busybox-NoSuchFile") + _, err := cs.RunContainer("NoSuchFile", "busybox-no-such-file") t.Assert(err.Error(), checker.Contains, expectedOutput) }