summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorqrort <[email protected]>2023-06-05 18:14:20 +0300
committerqrort <[email protected]>2023-06-05 18:14:20 +0300
commit4400b81871580f162bd4fb4a846f4b8eae7c142e (patch)
tree8dbdc88fbca559aae2fad75141f9da906df42605
parent2d8c5f7917aed01e7dc3461e0f011d57e6b531d3 (diff)
fix horology test
-rw-r--r--ydb/tests/functional/postgresql/common/differ.py2
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):