diff options
Diffstat (limited to 'test/pbmpscale.test')
-rwxr-xr-x | test/pbmpscale.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/pbmpscale.test b/test/pbmpscale.test index 9c38bb2e..efa5bfb5 100755 --- a/test/pbmpscale.test +++ b/test/pbmpscale.test @@ -36,16 +36,16 @@ echo "Error messages should appear below the line." 1>&2 echo "-----------------------------------------------------------" 1>&2 pbmpscale testgrid.pbm > ${test_out} || \ - echo -n "Expected failure 1" + printf "Expected failure 1" test -s ${test_out}; echo " "$? rm -f ${test_out} pbmpscale 0 testgrid.pbm > ${test_out} || \ - echo -n "Expected failure 2" + printf "Expected failure 2" test -s ${test_out}; echo " "$? rm -f ${test_out} pbmpscale 2 3 testgrid.pbm > ${test_out} || \ - echo -n "Expected failure 3" + printf "Expected failure 3" test -s ${test_out}; echo " "$? rm -f ${test_out} |