aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorlfenzo <lfenzo@protonmail.com>2022-07-29 19:50:40 -0300
committerStephan Seitz <stephan.seitz@fau.de>2022-08-03 12:05:30 -0700
commit64f3f7415debf0e660335b42ce2be2712507d7e5 (patch)
tree2b67a1a0f1241ad683a01c9967dfd333ab3b14d1 /tests
parentUpdated nvim-tresitter.txt doc (diff)
downloadnvim-treesitter-64f3f7415debf0e660335b42ce2be2712507d7e5.tar
nvim-treesitter-64f3f7415debf0e660335b42ce2be2712507d7e5.tar.gz
nvim-treesitter-64f3f7415debf0e660335b42ce2be2712507d7e5.tar.bz2
nvim-treesitter-64f3f7415debf0e660335b42ce2be2712507d7e5.tar.lz
nvim-treesitter-64f3f7415debf0e660335b42ce2be2712507d7e5.tar.xz
nvim-treesitter-64f3f7415debf0e660335b42ce2be2712507d7e5.tar.zst
nvim-treesitter-64f3f7415debf0e660335b42ce2be2712507d7e5.zip
(Broken test fixed) Updated static-namespace-functins.cpp to use function.call
Diffstat (limited to 'tests')
-rw-r--r--tests/query/highlights/cpp/static-namespace-functions.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/query/highlights/cpp/static-namespace-functions.cpp b/tests/query/highlights/cpp/static-namespace-functions.cpp
index 1658d5117..2bea488a3 100644
--- a/tests/query/highlights/cpp/static-namespace-functions.cpp
+++ b/tests/query/highlights/cpp/static-namespace-functions.cpp
@@ -3,10 +3,10 @@
int main()
{
B::foo();
- // ^ @function
+ // ^ @function.call
Foo::A::foo();
- // ^ @function
+ // ^ @function.call
Foo::a::A::foo();
- // ^ @function
+ // ^ @function.call
return 0;
}