mirror of
https://github.com/moby/moby.git
synced 2025-07-27 20:02:03 +03:00
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>
This commit is contained in:
@ -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
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user