diff options
Diffstat (limited to 't')
-rwxr-xr-x | t/t7407-submodule-foreach.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t7407-submodule-foreach.sh b/t/t7407-submodule-foreach.sh index 97b7562dbf..8a74ccac5f 100755 --- a/t/t7407-submodule-foreach.sh +++ b/t/t7407-submodule-foreach.sh @@ -288,7 +288,7 @@ test_expect_success 'use "update --recursive nested1" to checkout all submodules ) ' -test_expect_failure 'command passed to foreach retains notion of stdin' ' +test_expect_success 'command passed to foreach retains notion of stdin' ' ( cd super && git submodule foreach echo success >../expected && @@ -297,7 +297,7 @@ test_expect_failure 'command passed to foreach retains notion of stdin' ' test_cmp expected actual ' -test_expect_failure 'command passed to foreach --recursive retains notion of stdin' ' +test_expect_success 'command passed to foreach --recursive retains notion of stdin' ' ( cd clone2 && git submodule foreach --recursive echo success >../expected && |