From 6e8c9e7bee5319b1e324c72240ef9d7a77946135 Mon Sep 17 00:00:00 2001 From: Alexandr Morozov Date: Fri, 19 Sep 2014 21:47:59 +0400 Subject: [PATCH] Use prefix naming for port tests Signed-off-by: Alexandr Morozov --- integration-cli/docker_cli_port_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-cli/docker_cli_port_test.go b/integration-cli/docker_cli_port_test.go index 667889227f..ba986b9ac6 100644 --- a/integration-cli/docker_cli_port_test.go +++ b/integration-cli/docker_cli_port_test.go @@ -7,7 +7,7 @@ import ( "testing" ) -func TestListPorts(t *testing.T) { +func TestPortList(t *testing.T) { // one port runCmd := exec.Command(dockerBinary, "run", "-d", "-p", "9876:80", "busybox", "top") out, _, err := runCommandWithOutput(runCmd)