Skip to content

Commit

Permalink
Fix diff command
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst committed Oct 31, 2023
1 parent c104908 commit f0586be
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions test/check_equal_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,5 @@ def remove_run_time(df):
f"{goal_file} and {actual_file} are not equal in columns: {different_columns}"
)
# Print the differences
print(
os.system(
f"diff {goal_folder/goal_file} {actual_file} in columns: {different_columns}"
)
)
print(os.system(f"diff -u {goal_folder/goal_file} {actual_file}"))
raise ValueError(f"{goal_folder/goal_file} and {actual_file} are not equal")

0 comments on commit f0586be

Please sign in to comment.