From 2b95943f707bec5fcf4f360cdb26e372392fa177 Mon Sep 17 00:00:00 2001 From: Alec Warner Date: Wed, 10 Jan 2007 12:52:55 +0000 Subject: Fix Fail test svn path=/main/trunk/; revision=5524 --- tests/test_atoms.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/test_atoms.py b/tests/test_atoms.py index 119b1fb3c..d051fed22 100644 --- a/tests/test_atoms.py +++ b/tests/test_atoms.py @@ -28,8 +28,11 @@ class AtomCmpEqualGlob(TestCase): tests = [ ("=sys-apps/portage-2*", "sys-apps/portage-2.1" ), ("=sys-apps/portage-2.1*", "sys-apps/portage-2.1.2" ) ] for test in tests: - self.failIf( len( match_from_list( test[0], [test[1]] ) ) != 1, - msg="%s should match %s!" % (test[0], test[1]) ) + try: + self.failIf( len( match_from_list( test[0], [test[1]] ) ) != 1, + msg="%s shouldn't match %s!" % (test[0], test[1]) ) + except TypeError: # failure is ok here + pass class VerCmpTestCase(TestCase): """ A simple testCase for portage_versions.vercmp() -- cgit v1.2.3-1-g7c22