From 0cb87a44a7ea17316ff6ca83f2a715b8bdf38c87 Mon Sep 17 00:00:00 2001 From: klingbolt Date: Wed, 11 Oct 2023 00:18:38 -0400 Subject: [PATCH] Added to the Regex --- xml_converter/tests/attribute_testing.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xml_converter/tests/attribute_testing.py b/xml_converter/tests/attribute_testing.py index 8b6a90ad..bdce57cb 100755 --- a/xml_converter/tests/attribute_testing.py +++ b/xml_converter/tests/attribute_testing.py @@ -64,9 +64,9 @@ def are_arrays_equal(array1, array2) -> bool: arg_output_xml: str = "--output-taco-path" chrono_patterns = [ - "The taco parse function took [0-9]+ milliseconds to run", - "The xml write function took [0-9]+ milliseconds to run", - "The protobuf write function took [0-9]+ milliseconds to run" + "^The taco parse function took [0-9]+ milliseconds to run$", + "^The xml write function took [0-9]+ milliseconds to run$", + "^The protobuf write function took [0-9]+ milliseconds to run$" ]