summaryrefslogtreecommitdiffstats
path: root/46.patch
blob: 53ef673b13d992916a048e7191960681dcae3c5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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()));
     }
 }