Skip to content

Commit

Permalink
Fix integration test
Browse files Browse the repository at this point in the history
The error message was changed in Docker Machine v0.5.1
  • Loading branch information
legal90 committed Nov 20, 2015
1 parent ca27f76 commit 78c13aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/bats/core-commands.bats
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ load ${BASE_TEST_DIR}/helpers.bash
run machine inspect $NAME
echo ${output}
[ "$status" -eq 1 ]
[[ ${lines[0]} == "Host \"$NAME\" does not exist" ]]
[[ ${lines[0]} =~ "Host does not exist: \"$NAME\"" ]]
}

@test "$DRIVER: create" {
Expand Down

0 comments on commit 78c13aa

Please sign in to comment.