1
0
mirror of https://github.com/docker/cli.git synced 2026-01-13 18:22:35 +03:00

Use prefix naming for port tests

Signed-off-by: Alexandr Morozov <lk4d4@docker.com>
Upstream-commit: 6e8c9e7bee5319b1e324c72240ef9d7a77946135
Component: engine
This commit is contained in:
Alexandr Morozov
2014-09-19 21:47:59 +04:00
parent 0476801567
commit 2a20f56a59

View File

@@ -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)