t3600: remove useless redirect
In the next line the `actual` is overwritten again, so no need to redirect the output of checkout into that file. Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Stefan Beller committed
Dec 2, 2016 at 12:05 UTC
8954bd76ebb7eb2bb252ea36b1a91f7b67603fe6
1 file changed
+1
-1
t/t3600-rm.sh
+1
-1
@@ -709,7 +709,7 @@ test_expect_success 'checking out a commit after submodule removal needs manual
709
git commit -m "submodule removal" submod &&
710
git checkout HEAD^ &&
711
git submodule update &&
712
- git checkout -q HEAD^ 2>actual &&
712
+ git checkout -q HEAD^ &&
713
git checkout -q master 2>actual &&
714
echo "warning: unable to rmdir submod: Directory not empty" >expected &&
715
test_i18ncmp expected actual &&