From 58e956360ab90851d37eafb7ce1a32d5be28e3f8 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 28 Nov 2022 22:12:17 +0300 Subject: [PATCH] Add tests/test_check.py: fix test --- tests/test_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_check.py b/tests/test_check.py index 4aca860..8a372d6 100644 --- a/tests/test_check.py +++ b/tests/test_check.py @@ -510,5 +510,5 @@ def test_country_not_matching_region(capsys): captured = capsys.readouterr() assert ( captured.out - == f"{Fore.YELLOW}Missing region ({missing_region}): {Fore.RESET}{title}\n" + == f"{Fore.YELLOW}Missing region ({country} → {missing_region}): {Fore.RESET}{title}\n" )