Description: New imagemagick doesn't throw an exception on not-found registry tag, drop the test that was checking for this
Author: Iain Lane <iain.lane@canonical.com>
Bug-Upstream: https://github.com/mkoppanen/imagick/issues/251

--- php-imagick-3.4.3~rc2.orig/imagick-3.4.3RC2/tests/150_Imagick_setregistry.phpt
+++ php-imagick-3.4.3~rc2/imagick-3.4.3RC2/tests/150_Imagick_setregistry.phpt
@@ -33,13 +33,8 @@ if (array_key_exists("temporary-path", $
 }
 
 
-try {
-	$tmpPath = Imagick::getRegistry("non-existent string");
-	echo "Expected exception not thrown.\n";
-}
-catch (\ImagickException $ie) {
-	echo $ie->getMessage() . "\n";
-}
+$tmpPath = Imagick::getRegistry("non-existent string");
+echo "Path is ''.";
 
 
 ?>
@@ -47,4 +42,4 @@ catch (\ImagickException $ie) {
 Temporary-path was empty at start.
 Temporary path was set correctly.
 Temporary path was listed correctly.
-Imagick::getRegistry exception (%s)
+Path is ''.
