diff options
Diffstat (limited to 'core/TESTS/tests.py')
-rw-r--r-- | core/TESTS/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/TESTS/tests.py b/core/TESTS/tests.py index d8143b5..1cf9f60 100644 --- a/core/TESTS/tests.py +++ b/core/TESTS/tests.py @@ -170,8 +170,8 @@ 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) + # with open('ss-op.html', 'w') as f: + # f.write(content) self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'") |