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),