1
0
mirror of https://github.com/moby/moby.git synced 2025-12-24 13:21:20 +03:00

Merge pull request #8409 from unclejack/integcli_lint

integcli: lint fixes
This commit is contained in:
Alexandr Morozov
2014-10-06 14:32:08 -07:00
13 changed files with 64 additions and 64 deletions

View File

@@ -2038,7 +2038,7 @@ func TestRunNetworkNotInitializedNoneMode(t *testing.T) {
t.Fatal(err)
}
if res != "" {
t.Fatal("For 'none' mode network must not be initialized, but container got IP: %s", res)
t.Fatalf("For 'none' mode network must not be initialized, but container got IP: %s", res)
}
deleteAllContainers()
logDone("run - network must not be initialized in 'none' mode")