From f073668eb059e76cb44ff5402e8b30948c99c2ea Mon Sep 17 00:00:00 2001 From: pavel-zotov Date: Mon, 17 Jun 2024 15:55:17 +0300 Subject: [PATCH] Added/Updated tests\bugs\gh_7937_test.py: Reduced min_version to 5.0.1 after check on 5.0.1.1416-b4b3559. --- tests/bugs/gh_7937_test.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/bugs/gh_7937_test.py b/tests/bugs/gh_7937_test.py index ba0307ce..e5fa59a3 100644 --- a/tests/bugs/gh_7937_test.py +++ b/tests/bugs/gh_7937_test.py @@ -10,6 +10,9 @@ NOTES: Confirmed bug on 5.0.0.1305, 6.0.0.279 Checked on 6.0.0.286 -- all OK. Thanks to dimitr for providing simplest test case. + + [17.06.2024] pzotov + Reduced min_version to 5.0.1 after check on 5.0.1.1416-b4b3559. """ import pytest @@ -42,7 +45,7 @@ expected_stdout = """ COUNT 1 """ -@pytest.mark.version('>=6.0.0') +@pytest.mark.version('>=5.0.1') def test_1(act: Action): act.expected_stdout = expected_stdout act.execute(combine_output = True)