summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2023-03-09 22:54:32 +0100
committerJohannes Schindelin <johannes.schindelin@gmx.de>2023-03-12 20:31:56 +0100
commit0c8d22abaf155d97a0efd04bae9fcdad1de7956e (patch)
tree6789b4ec008bc04017c57c050590c91499286ef6
parent7c811ed5e55553769f0077ddf026ef17061bd8bd (diff)
downloadgit-0c8d22abaf155d97a0efd04bae9fcdad1de7956e.tar.gz
t5604: GETTEXT_POISON fix, conclusion
In fade728df122 (apply: fix writing behind newly created symbolic links, 2023-02-02), we backported a patch onto v2.30.* that was originally based on a much newer version. The v2.30.* release train still has the GETTEXT_POISON CI job, though, and hence needs `test_i18n*` in its tests. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-rwxr-xr-xt/t4115-apply-symlink.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t4115-apply-symlink.sh b/t/t4115-apply-symlink.sh
index 1acb7b2582..14e0f4d705 100755
--- a/t/t4115-apply-symlink.sh
+++ b/t/t4115-apply-symlink.sh
@@ -72,7 +72,7 @@ test_expect_success SYMLINKS 'symlink escape when creating new files' '
cat >expected_stderr <<-EOF &&
error: affected file ${SQ}renamed-symlink/create-me${SQ} is beyond a symbolic link
EOF
- test_cmp expected_stderr stderr &&
+ test_i18ncmp expected_stderr stderr &&
! test_path_exists .git/create-me
'