diff options
author | René Scharfe <l.s.r@web.de> | 2019-12-18 19:12:05 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-12-18 12:32:24 -0800 |
commit | 01ed17dc8c1df52b0545a7eae368a72b79e2a24c (patch) | |
tree | 709b40430ebf20d772253263c287b1b83807e1d7 | |
parent | t3501: don't create unused file (diff) | |
download | tgif-01ed17dc8c1df52b0545a7eae368a72b79e2a24c.tar.xz |
t5580: don't create unused file
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>
-rwxr-xr-x | t/t5580-clone-push-unc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5580-clone-push-unc.sh b/t/t5580-clone-push-unc.sh index b3c8a92450..01b52c195a 100755 --- a/t/t5580-clone-push-unc.sh +++ b/t/t5580-clone-push-unc.sh @@ -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 ' |