diff --git a/integration-tests/bats/global-args.bats b/integration-tests/bats/global-args.bats index a9d79b8fc2..2b85a4f5be 100755 --- a/integration-tests/bats/global-args.bats +++ b/integration-tests/bats/global-args.bats @@ -138,10 +138,9 @@ SQL @test "global-args: can use --branch on valid branch" { cd db1 - dolt checkout -b br1 - run dolt --branch br1 status + run dolt --branch b1 status [ "$status" -eq 0 ] - [[ "$output" =~ "On branch br1" ]] || false + [[ "$output" =~ "On branch b1" ]] || false [[ "$output" =~ "nothing to commit, working tree clean" ]] || false }