aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@frugalware.org>2008-08-16 17:17:42 +0200
committerJunio C Hamano <gitster@pobox.com>2008-08-16 23:21:18 -0700
commit20a55f4b2ef033dbb4a344e467716e03e13263a4 (patch)
tree2ce9eff5fd47c03b982a04704b82c66b124e78e6
parenta0d74d160f3d416be8f7fbfd18fee0eebf40d8e0 (diff)
downloadgit-20a55f4b2ef033dbb4a344e467716e03e13263a4.tar.gz
git-20a55f4b2ef033dbb4a344e467716e03e13263a4.tar.xz
t9300: replace '!' with test_must_fail
Signed-off-by: Miklos Vajna <vmiklos@frugalware.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xt/t9300-fast-import.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t9300-fast-import.sh b/t/t9300-fast-import.sh
index 1fc06c5a2..c6bc0a607 100755
--- a/t/t9300-fast-import.sh
+++ b/t/t9300-fast-import.sh
@@ -1045,7 +1045,7 @@ DATA
INPUT_END
test_expect_success 'P: fail on inline gitlink' '
- ! git-fast-import <input'
+ test_must_fail git-fast-import <input'
test_tick
cat >input <<INPUT_END
@@ -1068,6 +1068,6 @@ M 160000 :1 sub
INPUT_END
test_expect_success 'P: fail on blob mark in gitlink' '
- ! git-fast-import <input'
+ test_must_fail git-fast-import <input'
test_done