summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-11-13 13:37:21 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-11-13 13:37:21 (GMT)
commit0474cd19ef55c02d026e9a5b75c086bf8afbad40 (patch)
tree0bbf5012dcd7137175dcdb0396ba2837b07f87d1 /t
parent6c268fdda9dcc421e2bee1ce76496d3e9f96397f (diff)
parentfe21c6b285df4088f9685d5deed425064367ea24 (diff)
downloadgit-0474cd19ef55c02d026e9a5b75c086bf8afbad40.zip
git-0474cd19ef55c02d026e9a5b75c086bf8afbad40.tar.gz
git-0474cd19ef55c02d026e9a5b75c086bf8afbad40.tar.bz2
Merge branch 'js/mingw-utf8-env'
Windows fix. * js/mingw-utf8-env: mingw: reencode environment variables on the fly (UTF-16 <-> UTF-8) t7800: fix quoting
Diffstat (limited to 't')
-rwxr-xr-xt/t7800-difftool.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t7800-difftool.sh b/t/t7800-difftool.sh
index 562bd21..22b9199 100755
--- a/t/t7800-difftool.sh
+++ b/t/t7800-difftool.sh
@@ -332,7 +332,7 @@ test_expect_success 'difftool --extcmd cat arg1' '
test_expect_success 'difftool --extcmd cat arg2' '
echo branch >expect &&
git difftool --no-prompt \
- --extcmd sh\ -c\ \"cat\ \$2\" branch >actual &&
+ --extcmd sh\ -c\ \"cat\ \\\"\$2\\\"\" branch >actual &&
test_cmp expect actual
'