From db366b31635f997aefb9b066fa55b9fbb3e7e436 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 1 Jun 2022 12:10:57 +0300 Subject: [PATCH] Fix test --- tests/commands/pkg/test_outdated.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/commands/pkg/test_outdated.py b/tests/commands/pkg/test_outdated.py index da1abda8..91180b42 100644 --- a/tests/commands/pkg/test_outdated.py +++ b/tests/commands/pkg/test_outdated.py @@ -51,7 +51,7 @@ def test_project(clirunner, validate_cliresult, isolated_pio_core, tmp_path): # validate output assert "Checking" in result.output assert re.search( - r"^atmelavr\s+2\.2\.0\s+3\.\d+\.\d+\s+3\.\d+\.\d+\s+Platform\s+devkit", + r"^atmelavr\s+2\.2\.0\s+3\.\d+\.\d+\s+[456789]\.\d+\.\d+\s+Platform\s+devkit", result.output, re.MULTILINE, )