From 4440c5da33c5ea49654ec8554a1b322b2da5937b Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 21:33:26 +0100 Subject: [PATCH] [PR #9271/50b25f8c backport][stable-8] random_words integration tests: avoid test failure due to valid result (#9272) random_words integration tests: avoid test failure due to valid result (#9271) Avoid test failure due to valid result. (cherry picked from commit 50b25f8c01f86e6467cd7228881163bdfeff2dbb) Co-authored-by: Felix Fontein --- tests/integration/targets/lookup_random_words/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/integration/targets/lookup_random_words/test.yml b/tests/integration/targets/lookup_random_words/test.yml index 90c6727304..e1b6fde13b 100644 --- a/tests/integration/targets/lookup_random_words/test.yml +++ b/tests/integration/targets/lookup_random_words/test.yml @@ -27,6 +27,7 @@ - result4[0] | length >= 17 - result4[0] | length <= 29 - result4[0] | regex_findall("[A-Z]") | length == 3 - - result4[0].count("-") == 2 + # If one of the random words is 't-shirt', there are more than 2 dashes... + - result4[0].count("-") == 2 or "t-shirt" in result4[0].lower() - result5 | length == 1 - result5[0] | length == 15