From c2632c3b2d10aef82415136e4bcfa899ea613899 Mon Sep 17 00:00:00 2001 From: Ben Woodward <1472981+benwoodward@users.noreply.github.com> Date: Fri, 12 Dec 2025 18:14:10 +1100 Subject: [PATCH] fix: correct test assertions for helixql highlights Fixed column positions in test assertions to match actual parser output: - Line 6: moved ^ to point at ID type instead of colon delimiter - Line 98: moved ^ to point at IN keyword instead of name variable --- tests/query/highlights/helixql/test.helixql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/query/highlights/helixql/test.helixql b/tests/query/highlights/helixql/test.helixql index a13d5410b..d61c1a653 100644 --- a/tests/query/highlights/helixql/test.helixql +++ b/tests/query/highlights/helixql/test.helixql @@ -5,7 +5,7 @@ N::User { // ^ @type.definition INDEX id: ID, //^ @keyword -// ^ @type.builtin +// ^ @type.builtin name: String, //^ @property // ^ @type.builtin @@ -97,7 +97,7 @@ QUERY followUser(fromId: ID, toId: ID) => QUERY createMultipleUsers(names: [String]) => FOR name IN names { //^ @keyword -// ^ @keyword +// ^ @keyword user <- AddN({name: name}) } RETURN NONE