summaryrefslogtreecommitdiff
path: root/astroid/tests/unittest_objects.py
diff options
context:
space:
mode:
Diffstat (limited to 'astroid/tests/unittest_objects.py')
-rw-r--r--astroid/tests/unittest_objects.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/tests/unittest_objects.py b/astroid/tests/unittest_objects.py
index 92e2c4c2..0dba8dea 100644
--- a/astroid/tests/unittest_objects.py
+++ b/astroid/tests/unittest_objects.py
@@ -21,7 +21,7 @@ class ObjectsTest(unittest.TestCase):
frozenset({1: 2, 2: 3}) #@
""")
inferred = next(node.infer())
- self.assertIsInstance(inferred, nodes.FrozenSet)
+ self.assertIsInstance(inferred, objects.FrozenSet)
self.assertEqual(inferred.pytype(), "%s.frozenset" % bases.BUILTINS)