Skip to content

Commit

Permalink
tests: fix results comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
jarelllama authored Jan 30, 2025
1 parent 2ba4ec2 commit 5b8ca5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/test_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ check_output() {
else

# If files match, skip to next file to check
if ! cmp -s <(sort "$actual_output_file") <(sort "$expected_output_file"); then
if cmp -s <(sort "$actual_output_file") <(sort "$expected_output_file"); then
continue
fi
fi
Expand Down

0 comments on commit 5b8ca5f

Please sign in to comment.