summaryrefslogtreecommitdiff
path: root/test/test_testing.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_testing.py')
-rw-r--r--test/test_testing.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/test_testing.py b/test/test_testing.py
index d909021b..23469672 100644
--- a/test/test_testing.py
+++ b/test/test_testing.py
@@ -104,8 +104,12 @@ class TestingTest(TestCase):
def test_assert_not_in(self):
self.assertRaises(AssertionError, self.assertNotIn, "abc", "hello abc")
- self.assertRaises(AssertionError, self.assertNotIn, "abc", ["xyz", "abc", "foo"])
- self.assertRaises(AssertionError, self.assertNotIn, "abc", {'abc': 1, 'xyz': 2})
+ self.assertRaises(AssertionError,
+ self.assertNotIn, "abc", ["xyz", "abc", "foo"]
+ )
+ self.assertRaises(AssertionError,
+ self.assertNotIn, "abc", {'abc': 1, 'xyz': 2}
+ )
self.assertNotIn("abc", "xyz")
self.assertNotIn("abc", ["x", "xabc"])
self.assertNotIn("abc", {'x':'abc'})