From 0d452bdd28bb60dac3453360c1ccfa7374675054 Mon Sep 17 00:00:00 2001 From: Karsten Blees Date: Sat, 16 Aug 2014 16:03:11 +0200 Subject: [PATCH] fixup! remote-helper: check helper status after import/export One effect of checking the remote helper status is that SPI exit codes no longer bubble up to the porcelain layer - so we shouldn't test for this. Signed-off-by: Karsten Blees --- t/t5801-remote-helpers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/t5801-remote-helpers.sh b/t/t5801-remote-helpers.sh index 2419407546..259cbc02d0 100755 --- a/t/t5801-remote-helpers.sh +++ b/t/t5801-remote-helpers.sh @@ -228,7 +228,7 @@ test_expect_success 'push update refs failure' ' echo "update fail" >>file && git commit -a -m "update fail" && git rev-parse --verify testgit/origin/heads/update >expect && - test_expect_code 1 env GIT_REMOTE_TESTGIT_FAILURE="non-fast forward" \ + test_must_fail env GIT_REMOTE_TESTGIT_FAILURE="non-fast forward" \ git push origin update && git rev-parse --verify testgit/origin/heads/update >actual && test_cmp expect actual