X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/1eae3bf5ef8561508d83845f27b61c7533ba3378..6c052b023837579aab6dcb030ffdcea4a88e37ed:/t/t1000-branch-create.sh diff --git a/t/t1000-branch-create.sh b/t/t1000-branch-create.sh index 5a097a4..3fff3ee 100755 --- a/t/t1000-branch-create.sh +++ b/t/t1000-branch-create.sh @@ -26,7 +26,7 @@ test_expect_success \ test_expect_success \ 'Try to create an stgit branch with a spurious patches/ entry' ' - ! stg branch -c foo1 + command_error stg branch -c foo1 ' test_expect_success \ @@ -43,7 +43,7 @@ test_expect_success \ test_expect_success \ 'Try to create an stgit branch with an existing git branch by that name' ' - ! stg branch -c foo2 + command_error stg branch -c foo2 ' test_expect_success \ @@ -58,7 +58,7 @@ test_expect_success \ test_expect_success \ 'Create an invalid refs/heads/ entry' ' touch .git/refs/heads/foo3 && - ! stg branch -c foo3 + command_error stg branch -c foo3 ' test_expect_failure \ @@ -87,7 +87,7 @@ test_expect_success \ test_expect_success \ 'Create branch down the stack, behind the conflict caused by the generated file' ' - ! stg branch --create foo4 master^ + command_error stg branch --create foo4 master^ ' test_expect_success \