X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/blobdiff_plain/f749e393e47687971777d79c043562a91e4f493d..f03004e2c26efcd6b172a915e8e0d2f9a7cb064b:/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 \