@@ -344,7 +344,7 @@ test_expect_success 'large attributes line ignored in tree' '
344344 printf "path %02043d" 1 >.gitattributes &&
345345 git check-attr --all path >actual 2>err &&
346346 echo "warning: ignoring overly long attributes line 1" >expect &&
347- test_i18ncmp expect err &&
347+ test_cmp expect err &&
348348 test_must_be_empty actual
349349'
350350
@@ -357,7 +357,7 @@ test_expect_success 'large attributes line ignores trailing content in tree' '
357357 printf "a %02045dtrailing attribute\n" 1 >.gitattributes &&
358358 git check-attr --all trailing >actual 2>err &&
359359 echo "warning: ignoring overly long attributes line 1" >expect &&
360- test_i18ncmp expect err &&
360+ test_cmp expect err &&
361361 test_must_be_empty actual
362362'
363363
@@ -366,7 +366,7 @@ test_expect_success EXPENSIVE 'large attributes file ignored in tree' '
366366 dd if=/dev/zero of=.gitattributes bs=101M count=1 2>/dev/null &&
367367 git check-attr --all path >/dev/null 2>err &&
368368 echo "warning: ignoring overly large gitattributes file ${SQ}.gitattributes${SQ}" >expect &&
369- test_i18ncmp expect err
369+ test_cmp expect err
370370'
371371
372372test_expect_success ' large attributes line ignored in index' '
@@ -375,7 +375,7 @@ test_expect_success 'large attributes line ignored in index' '
375375 git update-index --add --cacheinfo 100644,$blob,.gitattributes &&
376376 git check-attr --cached --all path >actual 2>err &&
377377 echo "warning: ignoring overly long attributes line 1" >expect &&
378- test_i18ncmp expect err &&
378+ test_cmp expect err &&
379379 test_must_be_empty actual
380380'
381381
@@ -385,7 +385,7 @@ test_expect_success 'large attributes line ignores trailing content in index' '
385385 git update-index --add --cacheinfo 100644,$blob,.gitattributes &&
386386 git check-attr --cached --all trailing >actual 2>err &&
387387 echo "warning: ignoring overly long attributes line 1" >expect &&
388- test_i18ncmp expect err &&
388+ test_cmp expect err &&
389389 test_must_be_empty actual
390390'
391391
0 commit comments