From 00b82fcab6492a853958a3a5f43f95469a60e12f Mon Sep 17 00:00:00 2001 From: Alexandr Morozov Date: Fri, 19 Sep 2014 21:49:28 +0400 Subject: [PATCH] Use prefix naming for ps tests Signed-off-by: Alexandr Morozov --- integration-cli/docker_cli_ps_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-cli/docker_cli_ps_test.go b/integration-cli/docker_cli_ps_test.go index 631a27ce9e1f8..93075140fad41 100644 --- a/integration-cli/docker_cli_ps_test.go +++ b/integration-cli/docker_cli_ps_test.go @@ -7,7 +7,7 @@ import ( "time" ) -func TestListContainers(t *testing.T) { +func TestPsListContainers(t *testing.T) { runCmd := exec.Command(dockerBinary, "run", "-d", "busybox", "top") out, _, err := runCommandWithOutput(runCmd) errorOut(err, t, out) @@ -201,7 +201,7 @@ func assertContainerList(out string, expected []string) bool { return true } -func TestListContainersSize(t *testing.T) { +func TestPsListContainersSize(t *testing.T) { name := "test_size" runCmd := exec.Command(dockerBinary, "run", "--name", name, "busybox", "sh", "-c", "echo 1 > test") out, _, err := runCommandWithOutput(runCmd)