We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddd63a9 commit 9f1bf65Copy full SHA for 9f1bf65
src/result_analyzer/analysis_utils.py
@@ -179,6 +179,10 @@ def check_match(
179
if expected.get("line_number") != out.get("line_number"):
180
return False
181
182
+ if "col_offset" in expected and "col_offset" in out:
183
+ if expected["col_offset"] != out["col_offset"]:
184
+ return False
185
+
186
# check if function match
187
if "function" in expected:
188
if expected.get("function") != out.get("function"):
0 commit comments