12 lines
649 B
Diff
12 lines
649 B
Diff
--- a/tests/test_mex.py 2019-07-04 01:01:44.000000000 +0200
|
|
+++ b/tests/test_mex.py 2020-01-08 14:03:06.696115227 +0100
|
|
@@ -52,7 +52,7 @@ class Test_Mex(unittest.TestCase):
|
|
mex.discover()
|
|
self.fail('No exception was thrown caused by failed request')
|
|
except Exception as exp:
|
|
- self.assertEqual(exp.args[0], 'Mex Get request returned http error: 500 and server response: HTTPretty :)')
|
|
+ self.assertEqual(exp.args[0], 'Mex Get request returned http error: 500 and server response: {"message": "HTTPretty :)"}')
|
|
|
|
@httpretty.activate
|
|
def _happyPathTest(self, file_name, expectedUrl):
|