summaryrefslogtreecommitdiffstats
path: root/221.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2019-04-16 09:12:38 +0200
committerRemi Collet <remi@remirepo.net>2019-04-16 09:12:38 +0200
commita43a6790d5063ce8cca96c93f6a1aaa661cb8ab6 (patch)
tree1d7da0a83f0096dfd672e031aca5cabdfb983e08 /221.patch
parentcf233ae1ee473dfdb6d5239078b03df983b6a878 (diff)
- update to 3.4.4RC1
- open https://github.com/mkoppanen/imagick/pull/274 missing file - open https://github.com/mkoppanen/imagick/issues/275 bad stabililty - open https://github.com/mkoppanen/imagick/issues/276 failed test on 32-bit
Diffstat (limited to '221.patch')
-rw-r--r--221.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/221.patch b/221.patch
deleted file mode 100644
index 7025e9b..0000000
--- a/221.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From a516b549693ea373c0e4cb0286337f2e0fcd7f3c Mon Sep 17 00:00:00 2001
-From: Remi Collet <remi@remirepo.net>
-Date: Thu, 14 Dec 2017 12:58:28 +0100
-Subject: [PATCH] Fix #220 relax test to follow upstream change
-
----
- tests/150_Imagick_setregistry.phpt | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/tests/150_Imagick_setregistry.phpt b/tests/150_Imagick_setregistry.phpt
-index eb2b055..1b96452 100644
---- a/tests/150_Imagick_setregistry.phpt
-+++ b/tests/150_Imagick_setregistry.phpt
-@@ -35,10 +35,10 @@ if (array_key_exists("temporary-path", $registry) == true) {
-
- try {
- $tmpPath = Imagick::getRegistry("non-existent string");
-- echo "Expected exception not thrown.\n";
-+ var_dump($tmpPath == false); // Since 6.9.9-26, no exception raised
- }
- catch (\ImagickException $ie) {
-- echo $ie->getMessage() . "\n";
-+ var_dump(true);
- }
-
-
-@@ -47,4 +47,4 @@ catch (\ImagickException $ie) {
- Temporary-path was empty at start.
- Temporary path was set correctly.
- Temporary path was listed correctly.
--Imagick::getRegistry exception (%s)
-+bool(true)