From fb2e3a031daa32e955ee23e4d7df362e4191b351 Mon Sep 17 00:00:00 2001 From: Isaiah Raspet Date: Tue, 27 Feb 2024 14:07:54 -0700 Subject: [PATCH] remove curly brace check and dotall --- q2_feature_table/tests/test_summarize.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/q2_feature_table/tests/test_summarize.py b/q2_feature_table/tests/test_summarize.py index b44e956..fbae99d 100644 --- a/q2_feature_table/tests/test_summarize.py +++ b/q2_feature_table/tests/test_summarize.py @@ -388,10 +388,9 @@ def test_basic(self): sample_frequency_fp = os.path.join(output_dir, 'sample-frequency-detail.html') self.assertTrue(os.path.exists(sample_frequency_fp)) - re.DOTALL = True rx = (r'') + r'\n.*[^}]*.*\n') with open(sample_frequency_fp) as fi: text = fi.read()