diff options
Diffstat (limited to '46.patch')
-rw-r--r-- | 46.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/46.patch b/46.patch new file mode 100644 index 0000000..53ef673 --- /dev/null +++ b/46.patch @@ -0,0 +1,21 @@ +From 90304944c400db475f686945abac9b6dad4c9385 Mon Sep 17 00:00:00 2001 +From: Remi Collet <remi@remirepo.net> +Date: Tue, 5 Feb 2019 09:22:44 +0100 +Subject: [PATCH] fix test for zend-validator 1.11 + +--- + test/Transfer/Adapter/HttpTest.php | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/test/Transfer/Adapter/HttpTest.php b/test/Transfer/Adapter/HttpTest.php +index 6af43f0..34ec79a 100644 +--- a/test/Transfer/Adapter/HttpTest.php ++++ b/test/Transfer/Adapter/HttpTest.php +@@ -334,6 +334,6 @@ public function testValidationOfPhpExtendsFormError() + $_FILES = []; + $adapter = new HttpTestMockAdapter(); + $this->assertFalse($adapter->isValidParent()); +- $this->assertContains('exceeds the defined ini size', current($adapter->getMessages())); ++ $this->assertContains('exceeds', current($adapter->getMessages())); + } + } |