Skip to content

Commit a261661

Browse files
committed
fix assert_equal output in tests
1 parent 8f91bd0 commit a261661

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_helper.bash

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
assert_equal() {
44
if [ "$1" != "$2" ]; then
5-
echo "expected: $1"
6-
echo "actual: $2"
5+
echo "actual: $1"
6+
echo "expected: $2"
77
return 1
88
fi
99
}

0 commit comments

Comments
 (0)