From a69f28dbae7f1c04495ba628c555dc23bdd48ca3 Mon Sep 17 00:00:00 2001 From: Michael Lyons Date: Fri, 14 Mar 2025 16:18:10 -0400 Subject: [PATCH] Syntax Tests: Add symbol test assertion details --- plugins/syntaxtest_dev.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/syntaxtest_dev.py b/plugins/syntaxtest_dev.py index 265f34a3..a56c00d2 100644 --- a/plugins/syntaxtest_dev.py +++ b/plugins/syntaxtest_dev.py @@ -117,7 +117,7 @@ def get_details_of_test_assertion_line(self, pos): test_start_token = re.match(fr'^\s*({re.escape(tokens.comment_start)})', line_text) assertion_colrange = None if test_start_token: - assertion = re.match(r'\s*(?:(<-)|(\^+))', line_text[test_start_token.end():]) + assertion = re.match(r'\s*(?:(<-)|(\^+|@+))', line_text[test_start_token.end():]) if assertion: if assertion.group(1): assertion_colrange = (test_start_token.start(1),