Skip to content

Commit

Permalink
adjusted path variable and fixed format.
Browse files Browse the repository at this point in the history
  • Loading branch information
sei-lzhan committed Feb 11, 2025
1 parent 9ce6573 commit 24c636c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions test/util/test_diffoscope.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ def test_build_diffoscope_command():
expected_cmd_image = [
"diffoscope",
"--json",
output_dir+"/"+output_file,
"/test_path/file1",
"/test_path/file2",
output_dir + "/" + output_file,
path1,
path2,
]
assert (
build_diffoscope_command(
Expand Down
2 changes: 1 addition & 1 deletion vessel/utils/diffoscope.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,4 +295,4 @@ def parse_diffoscope_output(
flagged_issues_count += child_return[1]
diff_list.extend(child_return[2])

return unknown_issues_count, flagged_issues_count, diff_list
return unknown_issues_count, flagged_issues_count, diff_list

0 comments on commit 24c636c

Please sign in to comment.