From 1350a7d0ae7862296ed0c8fdd8edae7b1bfdf8cd Mon Sep 17 00:00:00 2001 From: pavel-zotov Date: Fri, 19 Apr 2024 11:28:23 +0300 Subject: [PATCH] Added/Updated tests\bugs\gh_8087_test.py: Reduced min_version to 5.0.1. Checked on 6.0.0.321 #1d96c10, 5.0.1.1383 #0e9ef69 (intermediate snapshot) - all OK. --- tests/bugs/gh_8087_test.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/bugs/gh_8087_test.py b/tests/bugs/gh_8087_test.py index a36228be..e429f433 100644 --- a/tests/bugs/gh_8087_test.py +++ b/tests/bugs/gh_8087_test.py @@ -6,9 +6,10 @@ ISSUE: https://github.com/FirebirdSQL/firebird/issues/8087 TITLE: AV when preparing a query with IN list that contains both literals and sub-query DESCRIPTION: NOTES: - [18.04.2024] pzotov + [19.04.2024] pzotov + Reduced min_version to 5.0.1 after backporting (commit #0e9ef69). Confirmed bug (AV) on 6.0.0.315 - Checked on 6.0.0.321 #1d96c10 - all OK. + Checked on 6.0.0.321 #1d96c10, 5.0.1.1383 #0e9ef69 (intermediate snapshot) - all OK. """ import pytest @@ -31,7 +32,7 @@ expected_stdout = """ Records affected: 0 """ -@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)