From: Karl Hasselström Date: Sat, 8 Dec 2007 11:00:10 +0000 (+0100) Subject: Don't use test_expect_failure for tests that are supposed to work X-Git-Tag: v0.14.3~35 X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/commitdiff_plain/b6586079958a36632a2773e1aacce15bbf431a77 Don't use test_expect_failure for tests that are supposed to work test_expect_failure is only for marking known bugs. Signed-off-by: Karl Hasselström --- diff --git a/t/t1000-branch-create.sh b/t/t1000-branch-create.sh index fa51a24..d6cf34a 100755 --- a/t/t1000-branch-create.sh +++ b/t/t1000-branch-create.sh @@ -71,9 +71,9 @@ test_expect_success \ touch a.o ' -test_expect_failure \ +test_expect_success \ 'Create branch down the stack, behind the conflict caused by the generated file' ' - stg branch --create bar master^ + ! stg branch --create bar master^ ' test_expect_success \