diff options
Diffstat (limited to 'core/TESTS/tests.py')
-rw-r--r-- | core/TESTS/tests.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/TESTS/tests.py b/core/TESTS/tests.py index 77cd998..7a12637 100644 --- a/core/TESTS/tests.py +++ b/core/TESTS/tests.py @@ -25,6 +25,7 @@ todo = '''ADD TESTS when we are redirecting /expofiles/ to a remote file-deliver import unittest import re +from http import HTTPStatus from django.test import TestCase, SimpleTestCase, Client @@ -170,8 +171,6 @@ class PageTests(TestCase): ph = r'All Survey scans folders ' content = response.content.decode() phmatch = re.search(ph, content) - # with open('ss-op.html', 'w') as f: - # f.write(content) self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'") |