Commit b57248b5 authored by Jérome Perrin's avatar Jérome Perrin

software/erp5/test: minor simplifications in test

parent 80c53c41
Pipeline #24613 failed with stage
in 0 seconds
...@@ -173,15 +173,16 @@ class TestCrontabs(MariaDBTestCase, CrontabMixin): ...@@ -173,15 +173,16 @@ class TestCrontabs(MariaDBTestCase, CrontabMixin):
'check-slow-query-pt-digest-result.py', 'check-slow-query-pt-digest-result.py',
)) ))
with self.assertRaises(subprocess.CalledProcessError) as error_context: with self.assertRaises(subprocess.CalledProcessError) as error_context:
subprocess.check_output('faketime 2050-01-01 %s' % check_slow_query_promise_plugin['command'], shell=True) subprocess.check_output(
'faketime 2050-01-01 %s' % check_slow_query_promise_plugin['command'],
text=True,
shell=True)
self.assertEqual( self.assertEqual(
error_context.exception.output, error_context.exception.output,
b"""\ "Threshold is lower than expected: \n"
Threshold is lower than expected: "Expected total queries : 1.0 and current is: 2\n"
Expected total queries : 1.0 and current is: 2 "Expected slowest query : 0.1 and current is: 3\n",
Expected slowest query : 0.1 and current is: 3 )
""")
class TestMariaDB(MariaDBTestCase): class TestMariaDB(MariaDBTestCase):
def test_utf8_collation(self): def test_utf8_collation(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment