summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJan Friedli2020-03-31 21:18:39 +0200
committerJan Friedli2020-05-09 21:24:00 +0200
commitd75515179f6e074ae6c069cc9fc294984df5a008 (patch)
tree663e4ff352783b986d82e67526d8dfb44a66694c /test
parentb7cd80d155a8b3e1ebc5607b046544d45cf1921f (diff)
additional error handling
Diffstat (limited to 'test')
-rw-r--r--test/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.py b/test/test.py
index 7431881..6734dcf 100644
--- a/test/test.py
+++ b/test/test.py
@@ -91,7 +91,7 @@ class Mat2WebTestCase(TestCase):
91 data=dict( 91 data=dict(
92 file=(io.BytesIO(zip_file_bytes), 'test.zip'), 92 file=(io.BytesIO(zip_file_bytes), 'test.zip'),
93 ), follow_redirects=True) 93 ), follow_redirects=True)
94 self.assertIn(b'Unable to clean',rv.data) 94 self.assertIn(b'Unable to clean', rv.data)
95 self.assertEqual(rv.status_code, 200) 95 self.assertEqual(rv.status_code, 200)
96 96
97 def test_get_upload_no_file_name(self): 97 def test_get_upload_no_file_name(self):