summaryrefslogtreecommitdiffstats
path: root/testfiles/rendering_tests
diff options
context:
space:
mode:
Diffstat (limited to 'testfiles/rendering_tests')
-rwxr-xr-xtestfiles/rendering_tests/test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/testfiles/rendering_tests/test.sh b/testfiles/rendering_tests/test.sh
index ab4605baf..a7865c7b7 100755
--- a/testfiles/rendering_tests/test.sh
+++ b/testfiles/rendering_tests/test.sh
@@ -19,7 +19,7 @@ testname=$(basename $test)
compare -metric AE ${testname}.png ${EXPECTED}.png ${testname}-compare.png 2> .tmp
test1=`cat .tmp`
echo $test1
- if [ "$test1" == 0 ]; then
+ if [ "$test1" = 0 ]; then
echo ${testname} "PASSED"
rm ${testname}.png ${testname}-compare.png
else