diff options
author | Brandon Casey <casey@nrlssc.navy.mil> | 2008-07-22 16:16:54 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-23 11:35:23 -0700 |
commit | 03b9dfb18ba451a2221601b740004befa7614c5b (patch) | |
tree | a9eb5652f6a830c0c5fb38e12666f32311cc9e04 /t | |
parent | 9a885fac0d530854f81eb6f4c4e19380ea041047 (diff) | |
download | git-03b9dfb18ba451a2221601b740004befa7614c5b.tar.gz git-03b9dfb18ba451a2221601b740004befa7614c5b.tar.xz |
t3200,t7201: replace '!' with test_must_fail
Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t3200-branch.sh | 2 | ||||
-rwxr-xr-x | t/t7201-co.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/t/t3200-branch.sh b/t/t3200-branch.sh index 7c583c805..7a83fbfe4 100755 --- a/t/t3200-branch.sh +++ b/t/t3200-branch.sh @@ -200,7 +200,7 @@ test_expect_success \ test_expect_success \ 'branch from non-branch HEAD w/--track causes failure' \ - '!(git branch --track my10 HEAD^)' + 'test_must_fail git branch --track my10 HEAD^' # Keep this test last, as it changes the current branch cat >expect <<EOF diff --git a/t/t7201-co.sh b/t/t7201-co.sh index 3111baa9e..9ad5d635a 100755 --- a/t/t7201-co.sh +++ b/t/t7201-co.sh @@ -335,6 +335,6 @@ test_expect_success \ git checkout -b delete-me master && rm .git/refs/heads/delete-me && test refs/heads/delete-me = "$(git symbolic-ref HEAD)" && - !(git checkout --track -b track)' + test_must_fail git checkout --track -b track' test_done |