summaryrefslogtreecommitdiffstats
path: root/8.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2020-11-02 10:13:44 +0100
committerRemi Collet <remi@remirepo.net>2020-11-02 10:13:44 +0100
commit3e133f38c0859fbe5bfc2fca98e6f0ccfe277ea2 (patch)
tree4a760d0e1d4af79c039977057924a205a5b75724 /8.patch
parent492008af63136762e4d642f8f2d065b36e9dc6a3 (diff)
update to 2.8.0
raise dependency on PHP 7.3 switch to phpunit9
Diffstat (limited to '8.patch')
-rw-r--r--8.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/8.patch b/8.patch
deleted file mode 100644
index 23ffddc..0000000
--- a/8.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 353a7eb58cb1d159979d8a5d181324ef4a8b91d8 Mon Sep 17 00:00:00 2001
-From: Remi Collet <remi@remirepo.net>
-Date: Thu, 9 Jan 2020 14:13:48 +0100
-Subject: [PATCH] rewrite testRegisteringNewScheme for 7.4
-
----
- test/UriFactoryTest.php | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/test/UriFactoryTest.php b/test/UriFactoryTest.php
-index 9828d1b..a9cbf7d 100644
---- a/test/UriFactoryTest.php
-+++ b/test/UriFactoryTest.php
-@@ -29,11 +29,11 @@ class UriFactoryTest extends TestCase
- */
- public function testRegisteringNewScheme($scheme, $class)
- {
-- $this->assertAttributeNotContains($class, 'schemeClasses', '\Laminas\Uri\UriFactory');
-+ $this->assertNull(UriFactory::getRegisteredSchemeClass($scheme));
- UriFactory::registerScheme($scheme, $class);
-- $this->assertAttributeContains($class, 'schemeClasses', '\Laminas\Uri\UriFactory');
-+ $this->assertEquals(UriFactory::getRegisteredSchemeClass($scheme), $class);
- UriFactory::unregisterScheme($scheme);
-- $this->assertAttributeNotContains($class, 'schemeClasses', '\Laminas\Uri\UriFactory');
-+ $this->assertNull(UriFactory::getRegisteredSchemeClass($scheme));
- }
-
- /**