diff options
author | qrort <[email protected]> | 2023-06-05 18:14:20 +0300 |
---|---|---|
committer | qrort <[email protected]> | 2023-06-05 18:14:20 +0300 |
commit | 4400b81871580f162bd4fb4a846f4b8eae7c142e (patch) | |
tree | 8dbdc88fbca559aae2fad75141f9da906df42605 | |
parent | 2d8c5f7917aed01e7dc3461e0f011d57e6b531d3 (diff) |
fix horology test
-rw-r--r-- | ydb/tests/functional/postgresql/common/differ.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/tests/functional/postgresql/common/differ.py b/ydb/tests/functional/postgresql/common/differ.py index f690cd94cf4..3c05160c5d8 100644 --- a/ydb/tests/functional/postgresql/common/differ.py +++ b/ydb/tests/functional/postgresql/common/differ.py @@ -16,7 +16,7 @@ class Differ: __reErr = re.compile(b'(^ERROR: [^\n]+)(?:\nLINE \\d+: [^\n]+(?:\n\\s*\\^\\s*)?)?(?:\n(?:HINT|DETAIL|CONTEXT): [^\n]+)*(?:\n|$)', re.MULTILINE) - __reYdbErr = re.compile(b'(^psql:[^\n]+\nIssues: \n)(?: *<main>:[^\n]+\n)*( *<main>:(\\d+:\\d+:)? Error: ([^\n]+)\n)\n?(?:\n|$)', re.MULTILINE) + __reYdbErr = re.compile(b'(^psql:[^\n]+\nIssues: \n)(?: *<main>:[^\n]+\n)*( *<main>:(\\d+:\\d+:)? Error: ([^\n]+)\n)(?:(?:HINT|DETAIL|CONTEXT): [^\n]+\n?)*\n?(?:\n|$)', re.MULTILINE) @classmethod def __remove_pg_error_msgs(cls, s): |