summaryrefslogtreecommitdiffstats
path: root/a669a8e3569e62e542812e0620f3d0f7e53870b2.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2017-11-03 13:27:43 +0100
committerRemi Collet <remi@remirepo.net>2017-11-03 13:27:43 +0100
commit7757f6c031ef98948e579488b842c235e4080d71 (patch)
treeaab69ade5f2c49319b146ea6c13bf078e30c3fe1 /a669a8e3569e62e542812e0620f3d0f7e53870b2.patch
parent90ab2ae99b7e02f663e9d56fc57615c5c8d2bfc1 (diff)
fix FTBFS from Koschei, add upstream patchHEADmaster
Diffstat (limited to 'a669a8e3569e62e542812e0620f3d0f7e53870b2.patch')
-rw-r--r--a669a8e3569e62e542812e0620f3d0f7e53870b2.patch101
1 files changed, 101 insertions, 0 deletions
diff --git a/a669a8e3569e62e542812e0620f3d0f7e53870b2.patch b/a669a8e3569e62e542812e0620f3d0f7e53870b2.patch
new file mode 100644
index 0000000..8646b70
--- /dev/null
+++ b/a669a8e3569e62e542812e0620f3d0f7e53870b2.patch
@@ -0,0 +1,101 @@
+From a669a8e3569e62e542812e0620f3d0f7e53870b2 Mon Sep 17 00:00:00 2001
+From: Sebastian Bergmann <sb@sebastian-bergmann.de>
+Date: Wed, 1 Nov 2017 08:08:42 +0100
+Subject: [PATCH] Update tests
+
+---
+ composer.json | 2 +-
+ tests/MockObjectTest.php | 39 +++++++++++++++++++--------------------
+ 2 files changed, 20 insertions(+), 21 deletions(-)
+
+diff --git a/composer.json b/composer.json
+index a31a583..5e68a36 100644
+--- a/composer.json
++++ b/composer.json
+@@ -26,7 +26,7 @@
+ "sebastian/exporter": "^3.0"
+ },
+ "require-dev": {
+- "phpunit/phpunit": "^6.0"
++ "phpunit/phpunit": "^6.4.3"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<6.0"
+diff --git a/tests/MockObjectTest.php b/tests/MockObjectTest.php
+index d7e74fb..a5ed90e 100644
+--- a/tests/MockObjectTest.php
++++ b/tests/MockObjectTest.php
+@@ -660,8 +660,8 @@ public function testVerificationOfMethodNameFailsWithoutParameters()
+ $this->fail('Expected exception');
+ } catch (ExpectationFailedException $e) {
+ $this->assertSame(
+- "Expectation failed for method name is equal to <string:right> when invoked 1 time(s).\n"
+- . "Method was expected to be called 1 times, actually called 0 times.\n",
++ 'Expectation failed for method name is equal to "right" when invoked 1 time(s).' . PHP_EOL .
++ 'Method was expected to be called 1 times, actually called 0 times.' . PHP_EOL,
+ $e->getMessage()
+ );
+ }
+@@ -685,8 +685,8 @@ public function testVerificationOfMethodNameFailsWithParameters()
+ $this->fail('Expected exception');
+ } catch (ExpectationFailedException $e) {
+ $this->assertSame(
+- "Expectation failed for method name is equal to <string:right> when invoked 1 time(s).\n"
+- . "Method was expected to be called 1 times, actually called 0 times.\n",
++ 'Expectation failed for method name is equal to "right" when invoked 1 time(s).' . PHP_EOL .
++ 'Method was expected to be called 1 times, actually called 0 times.' . PHP_EOL,
+ $e->getMessage()
+ );
+ }
+@@ -708,9 +708,9 @@ public function testVerificationOfMethodNameFailsWithWrongParameters()
+ $mock->right(['second']);
+ } catch (ExpectationFailedException $e) {
+ $this->assertSame(
+- "Expectation failed for method name is equal to <string:right> when invoked 1 time(s)\n"
+- . "Parameter 0 for invocation SomeClass::right(Array (...)) does not match expected value.\n"
+- . 'Failed asserting that two arrays are equal.',
++ 'Expectation failed for method name is equal to "right" when invoked 1 time(s)' . PHP_EOL .
++ 'Parameter 0 for invocation SomeClass::right(Array (...)) does not match expected value.' . PHP_EOL .
++ 'Failed asserting that two arrays are equal.',
+ $e->getMessage()
+ );
+ }
+@@ -720,17 +720,16 @@ public function testVerificationOfMethodNameFailsWithWrongParameters()
+ $this->fail('Expected exception');
+ } catch (ExpectationFailedException $e) {
+ $this->assertSame(
+- "Expectation failed for method name is equal to <string:right> when invoked 1 time(s).\n"
+- . "Parameter 0 for invocation SomeClass::right(Array (...)) does not match expected value.\n"
+- . "Failed asserting that two arrays are equal.\n"
+- . "--- Expected\n"
+- . "+++ Actual\n"
+- . "@@ @@\n"
+- . " Array (\n"
+- . "- 0 => 'first'\n"
+- . "- 1 => 'second'\n"
+- . "+ 0 => 'second'\n"
+- . " )\n",
++ 'Expectation failed for method name is equal to "right" when invoked 1 time(s).' . PHP_EOL .
++ 'Parameter 0 for invocation SomeClass::right(Array (...)) does not match expected value.' . PHP_EOL .
++ 'Failed asserting that two arrays are equal.' . PHP_EOL .
++ '--- Expected' . PHP_EOL .
++ '+++ Actual' . PHP_EOL .
++ '@@ @@' . PHP_EOL .
++ ' Array (' . PHP_EOL .
++ '- 0 => \'first\'' . PHP_EOL .
++ '- 1 => \'second\'' . PHP_EOL .
++ '+ 0 => \'second\'' . PHP_EOL,
+ $e->getMessage()
+ );
+ }
+@@ -799,8 +798,8 @@ public function testWithAnythingInsteadOfWithAnyParameters()
+ $this->fail('Expected exception');
+ } catch (ExpectationFailedException $e) {
+ $this->assertSame(
+- "Expectation failed for method name is equal to <string:right> when invoked 1 time(s)\n" .
+- "Parameter count for invocation SomeClass::right() is too low.\n" .
++ 'Expectation failed for method name is equal to "right" when invoked 1 time(s)' . PHP_EOL .
++ 'Parameter count for invocation SomeClass::right() is too low.' . PHP_EOL .
+ 'To allow 0 or more parameters with any value, omit ->with() or use ->withAnyParameters() instead.',
+ $e->getMessage()
+ );