summaryrefslogtreecommitdiff
path: root/src/tests
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/test.py b/src/tests/test.py
index 4c1c816..cbb8373 100644
--- a/src/tests/test.py
+++ b/src/tests/test.py
@@ -245,12 +245,12 @@ class TestSingleDispatch(unittest.TestCase):
self.assertEqual(g(t), "tuple")
if hasattr(c, 'ChainMap'):
self.assertEqual(
- [abc.__name__ for abc in g.abcs[0]],
+ [abc.__name__ for abc in g.vancestors[0]],
['ChainMap', 'MutableMapping', 'MutableSequence', 'MutableSet',
'Mapping', 'Sequence', 'Set', 'Sized'])
else:
self.assertEqual(
- [abc.__name__ for abc in g.abcs[0]],
+ [abc.__name__ for abc in g.vancestors[0]],
['MutableMapping', 'MutableSequence', 'MutableSet',
'Mapping', 'Sequence', 'Set', 'Sized'])