From b6586079958a36632a2773e1aacce15bbf431a77 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sat, 8 Dec 2007 12:00:10 +0100 Subject: [PATCH] Don't use test_expect_failure for tests that are supposed to work MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Organization: Straylight/Edgeware From: Karl Hasselström test_expect_failure is only for marking known bugs. Signed-off-by: Karl Hasselström --- t/t1000-branch-create.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 \ -- [mdw]