summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2019-02-05 22:26:14 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-02-05 22:26:14 (GMT)
commit3009c8bccada0980fcc43744a897bf117632e72b (patch)
tree63270ed4a52f29106d78b8b8e947fd9a1058ad0b /t
parent1c418243a525328b7261ba2c1f2cd93fd52191a2 (diff)
parentda43c07294a349199b74387a2907be56d3fcdf1b (diff)
downloadgit-3009c8bccada0980fcc43744a897bf117632e72b.zip
git-3009c8bccada0980fcc43744a897bf117632e72b.tar.gz
git-3009c8bccada0980fcc43744a897bf117632e72b.tar.bz2
Merge branch 'js/t6042-timing-fix'
Test update. * js/t6042-timing-fix: t6042: work around speed optimization on Windows
Diffstat (limited to 't')
-rwxr-xr-xt/t6042-merge-rename-corner-cases.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t6042-merge-rename-corner-cases.sh b/t/t6042-merge-rename-corner-cases.sh
index 7cc34e7..09dfa8b 100755
--- a/t/t6042-merge-rename-corner-cases.sh
+++ b/t/t6042-merge-rename-corner-cases.sh
@@ -1175,7 +1175,7 @@ test_expect_success 'setup nested conflicts from rename/rename(2to1)' '
# Handle the left side
git checkout L &&
- git mv one three &&
+ git rm one two &&
mv -f file_v2 three &&
mv -f file_v5 two &&
git add two three &&
@@ -1183,7 +1183,7 @@ test_expect_success 'setup nested conflicts from rename/rename(2to1)' '
# Handle the right side
git checkout R &&
- git mv two three &&
+ git rm one two &&
mv -f file_v3 one &&
mv -f file_v6 three &&
git add one three &&