6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-22 13:33:07 +01:00

Added/Updated functional\basic\db\test_03.py: added substitutions because FB 5.x now issues 'ICU-VERSION=NN.N' beside COLL-VERSION

This commit is contained in:
zotov 2022-04-24 13:59:02 +03:00
parent 2b03624331
commit 9017be2ea3

View File

@ -10,8 +10,12 @@ FBTEST: functional.basic.db.03
import pytest
from firebird.qa import *
substitutions = [('RDB\\$SPECIFIC_ATTRIBUTES.*', ''), ('COLL-VERSION=\\d+\\.\\d+\\.\\d+\\.\\d+', ''),
('COLL-VERSION=\\d+\\.\\d+', ''), ('RDB\\$SECURITY_CLASS[ ]+SQL\\$.*', '')]
substitutions = \
[
('RDB\\$SPECIFIC_ATTRIBUTES.*', '')
,('COLL-VERSION=\\d+.\\d+(;ICU-VERSION=\\d+.\\d+)?.*', 'COLL-VERSION=<attr>')
,('RDB\\$SECURITY_CLASS[ ]+SQL\\$.*', '')
]
db = db_factory()