From 01674a3b32cac8b1d83a11fe269935b8a3b26f7a Mon Sep 17 00:00:00 2001 From: pavel-zotov Date: Sun, 10 Sep 2023 11:29:01 +0300 Subject: [PATCH] Added/Updated tests\bugs\gh_7466_plans_tracking_test.py: fixed wrong subsitution item --- tests/bugs/gh_7466_plans_tracking_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bugs/gh_7466_plans_tracking_test.py b/tests/bugs/gh_7466_plans_tracking_test.py index 011e3311..82342fd2 100644 --- a/tests/bugs/gh_7466_plans_tracking_test.py +++ b/tests/bugs/gh_7466_plans_tracking_test.py @@ -48,7 +48,7 @@ db = db_factory() substitutions = [ (' \\(line \\d+, column \\d+\\)', '(line, column)' ) - ,( '\\s+\\d+\\s+ms', '') + ,( '\\d+\\s+ms', '') ] act = python_act('db', substitutions = substitutions)