Home | History | Annotate | Download | only in unittest

Lines Matching refs:d2

827     def assertDictEqual(self, d1, d2, msg=None):
829 self.assertIsInstance(d2, dict, 'Second argument is not a dictionary')
831 if d1 != d2:
832 standardMsg = '%s != %s' % (safe_repr(d1, True), safe_repr(d2, True))
835 pprint.pformat(d2).splitlines())))