Jelajahi Sumber

bug fix for test cases

Fix bug that `isNwPresent` can't distinguish network names with same
prefix.

Signed-off-by: Zhang Wei <zhangwei555@huawei.com>
Zhang Wei 9 tahun lalu
induk
melakukan
8f53edae3b
1 mengubah file dengan 2 tambahan dan 1 penghapusan
  1. 2 1
      integration-cli/docker_cli_network_unix_test.go

+ 2 - 1
integration-cli/docker_cli_network_unix_test.go

@@ -201,7 +201,8 @@ func isNwPresent(c *check.C, name string) bool {
 	out, _ := dockerCmd(c, "network", "ls")
 	lines := strings.Split(out, "\n")
 	for i := 1; i < len(lines)-1; i++ {
-		if strings.Contains(lines[i], name) {
+		netFields := strings.Fields(lines[i])
+		if netFields[1] == name {
 			return true
 		}
 	}