Browse code

Use prefix naming for inspect tests

Signed-off-by: Alexandr Morozov <lk4d4@docker.com>

Alexandr Morozov authored on 2014/09/19 17:43:07
Showing 1 changed files
... ...
@@ -7,7 +7,7 @@ import (
7 7
 	"testing"
8 8
 )
9 9
 
10
-func TestInspectContainerResponse(t *testing.T) {
10
+func TestInspectApiContainerResponse(t *testing.T) {
11 11
 	runCmd := exec.Command(dockerBinary, "run", "-d", "busybox", "true")
12 12
 	out, _, err := runCommandWithOutput(runCmd)
13 13
 	errorOut(err, t, fmt.Sprintf("failed to create a container: %v %v", out, err))