Commit 232167c1 authored by Jérome Perrin's avatar Jérome Perrin

tests: simplify and deprecate assertSameSet

Since a long time python unittest provides good assertions and we don't need to
build out own.
parent 2c80a461
...@@ -658,13 +658,8 @@ class ERP5TypeTestCaseMixin(ProcessingNodeTestCase, PortalTestCase): ...@@ -658,13 +658,8 @@ class ERP5TypeTestCaseMixin(ProcessingNodeTestCase, PortalTestCase):
genbt5list=1) genbt5list=1)
def assertSameSet(self, a, b, msg=None): def assertSameSet(self, a, b, msg=None):
if not msg: """deprecated, please use assertEqual(set(a), set(b))
try: """
from pprint import pformat
except ImportError:
msg='%r != %r' % (sorted(a), sorted(b))
else:
msg='\n%s\n!=\n%s' % (pformat(sorted(a)), pformat(sorted(b)))
self.assertEqual(set(a), set(b), msg) self.assertEqual(set(a), set(b), msg)
failIfDifferentSet = assertSameSet failIfDifferentSet = assertSameSet
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment