From 4234b050199d41921e8863b8f7cec7a6e9e6efa7 Mon Sep 17 00:00:00 2001 From: tabsdavis Date: Thu, 22 Jun 2023 12:07:31 -0700 Subject: [PATCH] Had incorrectly verified the wrong test output files. The match for the property doesn't need to contain the property as it is handled upond the connection property match itself. The fix is actually correcting the previous match regex. --- tdvt/tdvt/setup_env.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdvt/tdvt/setup_env.py b/tdvt/tdvt/setup_env.py index abfb2cbe..a6deb67c 100644 --- a/tdvt/tdvt/setup_env.py +++ b/tdvt/tdvt/setup_env.py @@ -222,7 +222,7 @@ def mangle_tds(file_path, connection_password_name): try: r1 = re.compile('(^\s*)') r2 = re.compile('(^\s*<.*relation connection=\').*?(\' .*>)') - r3 = re.compile('(^\s*)') + r3 = re.compile('(^\s*)') f = open(file_path, 'r') new_tds = ''