diff options
author | Remi Collet <remi@remirepo.net> | 2019-02-27 11:17:29 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-02-27 11:17:29 +0100 |
commit | 55fb1c583a268826d900890841d1e09b9a0f9515 (patch) | |
tree | c7d4934726a8c6166adfff41ec9b4e7fdbf9c3a5 /php-zetacomponents-unit-test-pr5.patch | |
parent | 5c4cc71156c715dee2ff5554d4d571fa4b5b7351 (diff) |
v1.1.2
Diffstat (limited to 'php-zetacomponents-unit-test-pr5.patch')
-rw-r--r-- | php-zetacomponents-unit-test-pr5.patch | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/php-zetacomponents-unit-test-pr5.patch b/php-zetacomponents-unit-test-pr5.patch deleted file mode 100644 index b3a211f..0000000 --- a/php-zetacomponents-unit-test-pr5.patch +++ /dev/null @@ -1,55 +0,0 @@ -From e310f21a220f8e52d5ef86d2474bd2fbeeb82e25 Mon Sep 17 00:00:00 2001 -From: Remi Collet <fedora@famillecollet.com> -Date: Wed, 3 Jun 2015 15:00:36 +0200 -Subject: [PATCH] fix ezcTestConstraintSimilarImage for recent phpunit - ---- - src/constraint/image.php | 24 +++++------------------- - 1 file changed, 5 insertions(+), 19 deletions(-) - -diff --git a/src/constraint/image.php b/src/constraint/image.php -index be037c5..7c837ab 100644 ---- a/src/constraint/image.php -+++ b/src/constraint/image.php -@@ -154,36 +154,22 @@ public function evaluate( $other, $description = '', $returnResult = false ) - * @param boolean $not Flag to indicate negation. - * @throws PHPUnit_Framework_ExpectationFailedException - */ -- public function fail( $other, $description, PHPUnit_Framework_ComparisonFailure $comparisonFailure = NULL ) -+ public function fail( $other, $description, SebastianBergmann\Comparator\ComparisonFailure $comparisonFailure = NULL ) - { - $failureDescription = sprintf( - 'Failed asserting that image "%s" is similar to image "%s".', -- - $other, - $this->filename - ); - -- if ($not) { -- $failureDescription = self::negate($failureDescription); -- } -- - if (!empty($description)) { - $failureDescription = $description . "\n" . $failureDescription; - } - -- if (!$not) { -- throw new PHPUnit_Framework_ExpectationFailedException( -- $failureDescription, -- PHPUnit_Framework_ComparisonFailure::diffEqual( -- $this->delta, -- $this->difference -- ) -- ); -- } else { -- throw new PHPUnit_Framework_ExpectationFailedException( -- $failureDescription -- ); -- } -+ throw new PHPUnit_Framework_ExpectationFailedException( -+ $failureDescription, -+ $comparisonFailure -+ ); - } - - /** |