summaryrefslogtreecommitdiffstats
path: root/tests/portage_util/test_stackLists.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/portage_util/test_stackLists.py')
-rw-r--r--tests/portage_util/test_stackLists.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/portage_util/test_stackLists.py b/tests/portage_util/test_stackLists.py
index c69139286..c4e1e0056 100644
--- a/tests/portage_util/test_stackLists.py
+++ b/tests/portage_util/test_stackLists.py
@@ -17,6 +17,4 @@ class StackListsTestCase(TestCase):
for test in tests:
result = stack_lists( test[0], test[2] )
- self.failIf( result != test[1],
- msg="Got %s != %s from stack_lists( %s, %s )" \
- % ( result, test[1], test[0], test[2] ) )
+ self.assertEqual( result , test[1] )