Skip to content
Snippets Groups Projects
Commit 26dd12b9 authored by Stefano Borini's avatar Stefano Borini
Browse files

Fixed regex call

parent c8290827
No related branches found
No related tags found
1 merge request!182Unicode check and porting to python3
...@@ -52,7 +52,6 @@ class TestExecution(unittest.TestCase): ...@@ -52,7 +52,6 @@ class TestExecution(unittest.TestCase):
with testfixtures.LogCapture(): with testfixtures.LogCapture():
with self.assertRaisesRegex( with self.assertRaisesRegex(
self,
RuntimeError, RuntimeError,
"The length of the slots is not equal to the length of" "The length of the slots is not equal to the length of"
" the slot map"): " the slot map"):
...@@ -66,7 +65,6 @@ class TestExecution(unittest.TestCase): ...@@ -66,7 +65,6 @@ class TestExecution(unittest.TestCase):
with testfixtures.LogCapture(): with testfixtures.LogCapture():
with self.assertRaisesRegex( with self.assertRaisesRegex(
self,
RuntimeError, RuntimeError,
"Unable to find requested name 'blap' in available" "Unable to find requested name 'blap' in available"
" data values."): " data values."):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment