Browse code

Fix search test for busybox image

Signed-off-by: Michael Crosby <michael@docker.com>

Michael Crosby authored on 2014/08/20 01:52:46
Showing 1 changed files
... ...
@@ -9,7 +9,7 @@ import (
9 9
 
10 10
 // search for repos named  "registry" on the central registry
11 11
 func TestSearchOnCentralRegistry(t *testing.T) {
12
-	searchCmd := exec.Command(dockerBinary, "search", "stackbrew/busybox")
12
+	searchCmd := exec.Command(dockerBinary, "search", "busybox")
13 13
 	out, exitCode, err := runCommandWithOutput(searchCmd)
14 14
 	errorOut(err, t, fmt.Sprintf("encountered error while searching: %v", err))
15 15