From 605785211a0f268e085579fdb695e2eb4561d022 Mon Sep 17 00:00:00 2001 From: milenovic Date: Sat, 25 Jan 2025 16:34:47 -0800 Subject: [PATCH] Revert "Fix failed linux tests" This reverts commit 116882a62a4f4845b42eda186d92608b4b15a89e. --- tests/bandage_command_line_tests.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/bandage_command_line_tests.sh b/tests/bandage_command_line_tests.sh index b88fb63d..679874e8 100755 --- a/tests/bandage_command_line_tests.sh +++ b/tests/bandage_command_line_tests.sh @@ -71,7 +71,7 @@ function test_image_height { image=$1 height=$2 - size=`magick $image -print "Size: %wx%h\n" /dev/null` + size=`convert $image -print "Size: %wx%h\n" /dev/null` if [[ $size == *"x$height"* ]]; then passes=$((passes + 1)) @@ -90,7 +90,7 @@ function test_image_width { image=$1 width=$2 - size=`magick $image -print "Size: %wx%h\n" /dev/null` + size=`convert $image -print "Size: %wx%h\n" /dev/null` if [[ $size == *"$width""x"* ]]; then passes=$((passes + 1)) @@ -110,7 +110,7 @@ function test_image_width_and_height { width=$2 height=$3 - size=`magick $image -print "Size: %wx%h\n" /dev/null` + size=`convert $image -print "Size: %wx%h\n" /dev/null` expected_size="Size: $width""x""$height" if [ "$size" == "$expected_size" ]; then