Skip to content

Commit

Permalink
Minor changes to fix test issues
Browse files Browse the repository at this point in the history
  • Loading branch information
AryazE committed Feb 28, 2024
1 parent e2327f9 commit 2eeb54b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/run_single_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def correct_output(expected: str, actual: str) -> bool:

def correct_coverage(expected: str, actual: str) -> bool:
actual_cov = {
k.replace("\\\\", "/").split("/tests/")[1]: v
k.replace("\\", "/").replace("//", "/").split("/tests/")[1]: v
for k, v in json.loads(actual).items()
}
expected_cov = json.loads(expected)
Expand Down

0 comments on commit 2eeb54b

Please sign in to comment.