Skip to content

Commit

Permalink
fix assert_equal output in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ekalinin committed Mar 27, 2022
1 parent 8f91bd0 commit a261661
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_helper.bash
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

assert_equal() {
if [ "$1" != "$2" ]; then
echo "expected: $1"
echo "actual: $2"
echo "actual: $1"
echo "expected: $2"
return 1
fi
}
Expand Down

0 comments on commit a261661

Please sign in to comment.