Merge branch 'rt/commentchar-fmt-merge-msg'

A test fix for recent update.

* rt/commentchar-fmt-merge-msg:
  t6200: avoid path mangling issue on Windows
This commit is contained in:
Junio C Hamano 2013-04-19 13:45:01 -07:00
Родитель 4407ea49fe 16a794de88
Коммит 6ae5d9863b
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -179,8 +179,8 @@ test_expect_success '--log=5 with custom comment character' '
cat >expected <<-EOF && cat >expected <<-EOF &&
Merge branch ${apos}left${apos} Merge branch ${apos}left${apos}
/ By Another Author (3) and A U Thor (2) x By Another Author (3) and A U Thor (2)
/ Via Another Committer x Via Another Committer
* left: * left:
Left #5 Left #5
Left #4 Left #4
@ -189,7 +189,7 @@ test_expect_success '--log=5 with custom comment character' '
Common #1 Common #1
EOF EOF
git -c core.commentchar="/" fmt-merge-msg --log=5 <.git/FETCH_HEAD >actual && git -c core.commentchar="x" fmt-merge-msg --log=5 <.git/FETCH_HEAD >actual &&
test_cmp expected actual test_cmp expected actual
' '