From 80751de8c12eed4cce6661b538fcff44f67888a9 Mon Sep 17 00:00:00 2001 From: disrupted Date: Tue, 11 Mar 2025 19:46:53 +0100 Subject: [PATCH] test: fix assertion --- tests/query/highlights/python/functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/query/highlights/python/functions.py b/tests/query/highlights/python/functions.py index 17a7ee04f..81d369f82 100644 --- a/tests/query/highlights/python/functions.py +++ b/tests/query/highlights/python/functions.py @@ -1,7 +1,7 @@ def func() -> None: ... _ = func() -# ^^^^ @function.method.call +# ^^^^ @function.call class Foo: def method(self) -> None: ...