1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Add fixes for integration-cli tests w/ --net none

Adds network to integration tests that were failing without network.

Fixes #10964
Fixes #10968

Signed-off-by: Jake Champlin <jake.champlin.27@gmail.com>
This commit is contained in:
Jake Champlin 2015-03-25 23:44:09 -04:00
parent f84086be2a
commit c2fe262439
3 changed files with 3 additions and 0 deletions

View file

@ -8,6 +8,7 @@ import (
// search for repos named "registry" on the central registry
func TestSearchOnCentralRegistry(t *testing.T) {
testRequires(t, Network)
searchCmd := exec.Command(dockerBinary, "search", "busybox")
out, exitCode, err := runCommandWithOutput(searchCmd)
if err != nil || exitCode != 0 {