mirror of
https://github.com/python/cpython.git
synced 2025-08-01 23:53:15 +00:00
Give a more informative message on an importlib test upon failure.
This commit is contained in:
parent
944820b044
commit
978259e9b3
1 changed files with 3 additions and 1 deletions
|
@ -123,7 +123,9 @@ class PyLoaderTests(testing_abc.LoaderTests):
|
||||||
|
|
||||||
def eq_attrs(self, ob, **kwargs):
|
def eq_attrs(self, ob, **kwargs):
|
||||||
for attr, val in kwargs.items():
|
for attr, val in kwargs.items():
|
||||||
self.assertEqual(getattr(ob, attr), val)
|
found = getattr(ob, attr)
|
||||||
|
self.assertEqual(found, val,
|
||||||
|
"{} attribute: {} != {}".format(attr, found, val))
|
||||||
|
|
||||||
def test_module(self):
|
def test_module(self):
|
||||||
name = '<module>'
|
name = '<module>'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue