Skip to content

Commit

Permalink
fix _get_path
Browse files Browse the repository at this point in the history
  • Loading branch information
shurivich committed Dec 9, 2024
1 parent d9529e9 commit 7a64c5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/debugger/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def extract_probe_ids(probes):


def _get_path(test_name, suffix):
filename = test_name + "_" + context.library + "_" + suffix + ".json"
filename = test_name + "_" + _Base_Debugger_Test.tracer["language"] + "_" + suffix + ".json"
path = os.path.join(_CUR_DIR, "approvals", filename)
return path

Expand Down

0 comments on commit 7a64c5b

Please sign in to comment.