Skip to content

Commit c271e10

Browse files
committed
Remove avoidable Godot error log in tests/4-use-godot-from-python/tests/test_classes.py
1 parent 3f851e5 commit c271e10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/4-use-godot-from-python/tests/test_classes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def test_method(kind: str):
127127
assert_isinstance(node.get_class(), godot.GDString)
128128

129129
case "const":
130-
assert_isinstance(node.can_process(), bool)
130+
assert_isinstance(node.get_children(), godot.GDArray)
131131

132132
case "virtual":
133133
clodotest.skip(reason="TODO: find a virtual method overwritten by a subclass ?")

0 commit comments

Comments
 (0)