Skip to content
This repository was archived by the owner on Sep 26, 2021. It is now read-only.

Commit 7909ee3

Browse files
liushengshin-
liusheng
authored andcommitted
Fix integrate tests of core commands cases
Signed-off-by: liusheng <[email protected]>
1 parent dccdee0 commit 7909ee3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/core/core-commands.bats

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use_shared_machine
88
run machine inspect UNKNOWN
99
echo ${output}
1010
[ "$status" -eq 1 ]
11-
[[ ${lines[0]} =~ "Host does not exist: \"UNKNOWN\"" ]]
11+
[[ ${lines[0]} =~ "Docker machine \"UNKNOWN\" does not exist" ]]
1212
}
1313

1414
@test "$DRIVER: appears with ls" {
@@ -29,7 +29,7 @@ use_shared_machine
2929
run machine create -d $DRIVER $NAME
3030
echo ${output}
3131
[ "$status" -eq 1 ]
32-
[[ ${lines[0]} == "Host already exists: \"$NAME\"" ]]
32+
[[ ${lines[0]} == "Docker machine \"$NAME\" already exists" ]]
3333
}
3434

3535
@test "$DRIVER: run busybox container" {

0 commit comments

Comments
 (0)