From 0df90bdd12f57b03ac3ff7d16926c56a8f3d4682 Mon Sep 17 00:00:00 2001 From: Elijah Newren Date: Wed, 8 Aug 2018 09:31:03 -0700 Subject: t7406: fix call that was failing for the wrong reason A test making use of test_must_fail was failing like this: fatal: ambiguous argument '|': unknown revision or path not in the working tree. when the intent was to verify that a specific string was not found in the output of the git diff command, i.e. that grep returned non-zero. Fix the test to do that. Signed-off-by: Elijah Newren Signed-off-by: Junio C Hamano diff --git a/t/t7406-submodule-update.sh b/t/t7406-submodule-update.sh index f604ef7..ccdc2f9 100755 --- a/t/t7406-submodule-update.sh +++ b/t/t7406-submodule-update.sh @@ -599,7 +599,8 @@ test_expect_success 'submodule update - update=none in .git/config but --checkou ) && git diff --raw | grep " submodule" && git submodule update --checkout && - test_must_fail git diff --raw \| grep " submodule" && + git diff --raw >out && + ! grep " submodule" out && (cd submodule && test_must_fail compare_head ) && -- cgit v0.10.2-6-g49f6