diff options
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_pyclbr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py index 7c9d4aa..a03daa9 100644 --- a/Lib/test/test_pyclbr.py +++ b/Lib/test/test_pyclbr.py @@ -44,7 +44,7 @@ class PyclbrTest(TestCase): if key in ignore: return if key not in obj: print >>sys.stderr, "***",key - self.failUnless(key) in obj + self.failUnless(key in obj) def assertEqualsOrIgnored(self, a, b, ignore): ''' succeed iff a == b or a in ignore or b in ignore ''' |