From 58dfc5292e9df5415a212f6bf28356e76d515157 Mon Sep 17 00:00:00 2001 From: eirannejad Date: Wed, 7 Feb 2024 15:45:27 -0600 Subject: [PATCH] Revert "fixed test" This reverts commit a80c955a489bce4a649452f7db49e59eab3ba38c. --- test/test_api/test_classes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_api/test_classes.py b/test/test_api/test_classes.py index 0c3dac5a..080a6d57 100644 --- a/test/test_api/test_classes.py +++ b/test/test_api/test_classes.py @@ -348,8 +348,8 @@ def test_parent_on_comprehension(Script): def test_type(Script): for c in Script('a = [str()]; a[0].').complete(): - if c.name == '__class__': - assert c.type == 'property' + if c.name == '__class__' and False: # TODO fix. + assert c.type == 'class' else: assert c.type in ('function', 'statement')