]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t5580: don't create unused file
authorRené Scharfe <l.s.r@web.de>
Wed, 18 Dec 2019 18:12:05 +0000 (19:12 +0100)
committerJunio C Hamano <gitster@pobox.com>
Wed, 18 Dec 2019 20:32:24 +0000 (12:32 -0800)
The file "out" was introduced by 13b57da833 (mingw: verify that paths
are not mistaken for remote nicknames, 2017-05-29), but has not actually
been used then and since.  Get rid of it.

Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5580-clone-push-unc.sh

index b3c8a92450bc0e9ba869563ef1a7a4c1362cebd6..01b52c195afad02438ffc2956d1368c5405e7a42 100755 (executable)
@@ -58,7 +58,7 @@ test_expect_success push '
 
 test_expect_success MINGW 'remote nick cannot contain backslashes' '
        BACKSLASHED="$(winpwd | tr / \\\\)" &&
-       git ls-remote "$BACKSLASHED" >out 2>err &&
+       git ls-remote "$BACKSLASHED" 2>err &&
        test_i18ngrep ! "unable to access" err
 '