Blob Blame History Raw
From 1e45e83da6be825b01244256d23de25c37b0e9be Mon Sep 17 00:00:00 2001
From: Jeffrey Ratcliffe <4869402+carygravel@users.noreply.github.com>
Date: Sun, 2 Apr 2023 00:00:00 +0000
Subject: [PATCH] Fix test failure in t/131_save_tiff.t due to changes in
 ImageMagick
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Petr Písař <ppisar@redhat.com>
---
 t/131_save_tiff.t | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/t/131_save_tiff.t b/t/131_save_tiff.t
index fb0ec69c..3fe473aa 100644
--- a/t/131_save_tiff.t
+++ b/t/131_save_tiff.t
@@ -43,12 +43,12 @@ Gtk3->main;
 
 like(
     capture(qw(identify test.tif)),
-    qr/test.tif TIFF 70x46 70x46\+0\+0 8-bit sRGB [7|9][.\d]+K?B/,
+    qr/test.tif TIFF 70x46 70x46\+0\+0 8-bit sRGB/,
     'valid TIFF created'
 );
 like(
     capture(qw(identify test2.png)),
-    qr/test2.png PNG 70x46 70x46\+0\+0 8-bit sRGB 7[.\d]+K?B.*/,
+    qr/test2.png PNG 70x46 70x46\+0\+0 8-bit sRGB/,
     'ran post-save hook'
 );
 
-- 
2.40.1