summaryrefslogtreecommitdiffstats
path: root/testfiles/rendering_tests
diff options
context:
space:
mode:
authorJabier Arraiza <jabier.arraiza@marker.es>2019-10-19 17:47:22 +0000
committerJabier Arraiza <jabier.arraiza@marker.es>2019-10-19 17:47:22 +0000
commitb78e40a63a6410f4c608181f2db43bb63620db9a (patch)
tree69d6cd802f18ed293531537cec93ea388dc0e89a /testfiles/rendering_tests
parentExtensions: Implement translationdomain functionality (diff)
downloadinkscape-b78e40a63a6410f4c608181f2db43bb63620db9a.tar.gz
inkscape-b78e40a63a6410f4c608181f2db43bb63620db9a.zip
Fix bug in sh comparsion
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