diff --git a/tests/query/highlights/python/functions.py b/tests/query/highlights/python/functions.py index e80f03f88..754d5b64c 100644 --- a/tests/query/highlights/python/functions.py +++ b/tests/query/highlights/python/functions.py @@ -3,6 +3,9 @@ def func() -> None: ... _ = func() # ^^^^ @function.call +"{}".format(1) +# ^^^^^^ @function.call + class Foo: def method(self) -> None: ...