aboutsummaryrefslogtreecommitdiffstats
path: root/python/tests/clean_files.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/tests/clean_files.py')
-rw-r--r--python/tests/clean_files.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tests/clean_files.py b/python/tests/clean_files.py
index ce1102be..f752bc2c 100644
--- a/python/tests/clean_files.py
+++ b/python/tests/clean_files.py
@@ -28,7 +28,7 @@ def test_url_cleanups(file_cleaner):
# remove None wayback links
assert len(f.urls) == 2
for u in f.urls:
- assert not 'web/None' in u.url
+ assert 'web/None' not in u.url
assert f == file_cleaner.clean_entity(f)
assert f == file_cleaner.clean_entity(copy.deepcopy(f))