From 5b57e1b99b8e961cbac9af5832ab2b4c03a758bd Mon Sep 17 00:00:00 2001 From: pavel-zotov Date: Wed, 13 Mar 2024 22:34:04 +0300 Subject: [PATCH] Added/Updated tests\bugs\gh_7997_test.py: Reduced min_version after check 4.0.5.3066 (commit #9930033) --- tests/bugs/gh_7997_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/bugs/gh_7997_test.py b/tests/bugs/gh_7997_test.py index defa7206..920c26fe 100644 --- a/tests/bugs/gh_7997_test.py +++ b/tests/bugs/gh_7997_test.py @@ -9,6 +9,7 @@ NOTES: Confirmed problem in 6.0.0.274: some expressions fail with "SQLSTATE = 22003 / ... / -numeric value is out of range". Checked 6.0.0.276 -- all fine. Checked 5.0.1.1358 (25a643a). + Checked 4.0.5.3066 (9930033). """ import pytest @@ -86,7 +87,7 @@ expected_stdout = """ Records affected: 0 """ -@pytest.mark.version('>=5.0.1') +@pytest.mark.version('>=4.0.5') def test_1(act: Action): act.expected_stdout = expected_stdout act.execute(combine_output = True)