chiark / gitweb /
Don't use test_expect_failure for tests that are supposed to work
authorKarl Hasselström <kha@treskal.com>
Sat, 8 Dec 2007 11:00:10 +0000 (12:00 +0100)
committerKarl Hasselström <kha@treskal.com>
Sat, 8 Dec 2007 11:00:10 +0000 (12:00 +0100)
test_expect_failure is only for marking known bugs.

Signed-off-by: Karl Hasselström <kha@treskal.com>
t/t1000-branch-create.sh

index fa51a2487761e272ca4034c9de751edb385df701..d6cf34a84b22286b76f3fc44b14b2a3360d7899e 100755 (executable)
@@ -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 \