From b0dfd2a89a89621c9f2381fcce9a04ba34c51bbc Mon Sep 17 00:00:00 2001 From: Javier Vegas-Regidor Date: Wed, 14 Jul 2021 14:55:20 +0200 Subject: [PATCH] Fix failing test --- tests/integration/test_recipe_checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_recipe_checks.py b/tests/integration/test_recipe_checks.py index 5cec9b2abf..1a4f0e290c 100644 --- a/tests/integration/test_recipe_checks.py +++ b/tests/integration/test_recipe_checks.py @@ -40,7 +40,7 @@ (FILES[:-1], dict(VAR), ERR_RANGE.format('2025', FILES[:-1])), (FILES[:-2], dict(VAR), ERR_RANGE.format('2024, 2025', FILES[:-2])), ([FILES[1]] + [FILES[3]], dict(VAR), - ERR_RANGE.format('2024, 2025, 2020, 2022', [FILES[1]] + [FILES[3]])), + ERR_RANGE.format('2020, 2022, 2024, 2025', [FILES[1]] + [FILES[3]])), ]