diff --git a/test/integration/cli/create-rm.bats b/test/integration/cli/create-rm.bats index 6215ea61c6..37a07134a6 100644 --- a/test/integration/cli/create-rm.bats +++ b/test/integration/cli/create-rm.bats @@ -76,13 +76,13 @@ load ${BASE_TEST_DIR}/helpers.bash [[ ${lines[0]} == "Error removing host \"∞\": Loading host from store failed: Host does not exist: \"∞\"" ]] } -@test "none: rm is succesful 'machine rm 0'" { +@test "none: rm is successful 'machine rm 0'" { run machine rm 0 [ "$status" -eq 0 ] } # Should be replaced by the test below -@test "none: rm is succesful 'machine rm a'" { +@test "none: rm is successful 'machine rm a'" { run machine rm a [ "$status" -eq 0 ] } diff --git a/test/integration/cli/status.bats b/test/integration/cli/status.bats index 329e48145c..c9c664880d 100644 --- a/test/integration/cli/status.bats +++ b/test/integration/cli/status.bats @@ -3,7 +3,7 @@ load ${BASE_TEST_DIR}/helpers.bash @test "status: show error in case of no args" { - run machine inspect + run machine status [ "$status" -eq 1 ] - [[ ${output} == *"must specify a machine name"* ]] + [[ ${output} == *"Expected one machine name as an argument."* ]] } diff --git a/test/integration/cli/url.bats b/test/integration/cli/url.bats index 727454d941..1cd6690495 100644 --- a/test/integration/cli/url.bats +++ b/test/integration/cli/url.bats @@ -3,7 +3,7 @@ load ${BASE_TEST_DIR}/helpers.bash @test "url: show error in case of no args" { - run machine inspect + run machine url [ "$status" -eq 1 ] - [[ ${output} == *"must specify a machine name"* ]] + [[ ${output} == *"Expected one machine name as an argument."* ]] }