t6200: avoid path mangling issue on Windows
[gitweb.git] / t / t6200-fmt-merge-msg.sh
index 84e10fde6fde69e69c24f959d529a5f946117352..ff82640aeeda3bfd0a26369427e68119b4cbf9fd 100755 (executable)
@@ -184,8 +184,8 @@ test_expect_success '--log=5 with custom comment character' '
        cat >expected <<-EOF &&
        Merge branch ${apos}left${apos}
 
-       / By Another Author (3) and A U Thor (2)
-       / Via Another Committer
+       x By Another Author (3) and A U Thor (2)
+       x Via Another Committer
        * left:
          Left #5
          Left #4
@@ -194,7 +194,7 @@ test_expect_success '--log=5 with custom comment character' '
          Common #1
        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
 '