diff options
author | Filipp Lepalaan <filipp@mac.com> | 2018-10-09 08:55:52 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2018-10-09 08:55:52 +0300 |
commit | d098a0f3097988758ef28ab48add4c5e262c8ec0 (patch) | |
tree | 303b06e51194a49760ff0964afde4f7b7d77ef43 /tests | |
parent | 5b0fd57edd30eb6e901289b56279489498ee6652 (diff) | |
download | py-gsxws-d098a0f3097988758ef28ab48add4c5e262c8ec0.tar.gz py-gsxws-d098a0f3097988758ef28ab48add4c5e262c8ec0.tar.bz2 py-gsxws-d098a0f3097988758ef28ab48add4c5e262c8ec0.zip |
Add custom exception type for connection errors
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_gsxws.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_gsxws.py b/tests/test_gsxws.py index 7dd3412..201a066 100644 --- a/tests/test_gsxws.py +++ b/tests/test_gsxws.py @@ -166,7 +166,7 @@ class CoreFunctionTestCase(TestCase): part = repairs.RepairOrderLine() part.partNumber = '661-5571' rep.orderLines = [part] - self.assertRegex(str(rep.dumps()), r'<GsxObject><blaa>ääöö</blaa><orderLines>') + self.assertRegex(str(rep.dumps()), '<GsxObject><blaa>ääöö</blaa><orderLines>') def test_cache(self): """Make sure the cache is working.""" |