aboutsummaryrefslogtreecommitdiff
path: root/bleach/tests/tools.py
diff options
context:
space:
mode:
Diffstat (limited to 'bleach/tests/tools.py')
-rw-r--r--bleach/tests/tools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bleach/tests/tools.py b/bleach/tests/tools.py
index 87f926c..3ae047e 100644
--- a/bleach/tests/tools.py
+++ b/bleach/tests/tools.py
@@ -3,5 +3,5 @@
def in_(l, a, msg=None):
"""Shorthand for 'assert a in l, "%r not in %r" % (a, l)
"""
- if not a in l:
+ if a not in l:
raise AssertionError(msg or "%r not in %r" % (a, l))