Skip to content

Commit

Permalink
Fixed pre-3.12 quoting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sternj committed Nov 29, 2024
1 parent 1edde6a commit 4702059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/smoketest_line_invalidation.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def check_for_changes():
digest = md5(f.read()).hexdigest()
if digest != expected_sum:
errors.append(fname)
assert len(errors) == 0, f'Detected change in file(s) {','.join(errors)}'
assert len(errors) == 0, f'Detected change in file(s) {",".join(errors)}'

def get_line(scalene_profile: ScaleneJSONSchema, lineno: int):
files = list(scalene_profile.files.keys())
Expand Down

0 comments on commit 4702059

Please sign in to comment.