summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2023-03-09 22:55:40 +0100
committerJohannes Schindelin <johannes.schindelin@gmx.de>2023-03-12 20:31:56 +0100
commit7c811ed5e55553769f0077ddf026ef17061bd8bd (patch)
tree77fae656c8be307d66d4cac59a108c82e80b1fef
parenta2b2173cfeed82347711862d20aabbb1a5478379 (diff)
downloadgit-7c811ed5e55553769f0077ddf026ef17061bd8bd.tar.gz
t5604: GETTEXT_POISON fix, part 1
In bffc762f87ae (dir-iterator: prevent top-level symlinks without FOLLOW_SYMLINKS, 2023-01-24), 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/t5604-clone-reference.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5604-clone-reference.sh b/t/t5604-clone-reference.sh
index 4ff21d7ccf..9ba2af0ff7 100755
--- a/t/t5604-clone-reference.sh
+++ b/t/t5604-clone-reference.sh
@@ -354,7 +354,7 @@ test_expect_success SYMLINKS 'clone repo with symlinked objects directory' '
test_must_fail git clone --local malicious clone 2>err &&
test_path_is_missing clone &&
- grep "failed to start iterator over" err
+ test_i18ngrep "failed to start iterator over" err
'
test_done