summaryrefslogtreecommitdiffstats
path: root/php-doctrine-dbal-phpunit54.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-12-10 15:23:16 +0100
committerRemi Collet <remi@remirepo.net>2018-12-10 15:23:16 +0100
commit52e0753736b95204623952be41d1b9dfd45cee59 (patch)
tree9a9f827015338e4e650ac6b63d43f0dd3ee9631d /php-doctrine-dbal-phpunit54.patch
parentfed5d8dda37d24c1171e925b8265a2611cd660b7 (diff)
v2.9.0
Diffstat (limited to 'php-doctrine-dbal-phpunit54.patch')
-rw-r--r--php-doctrine-dbal-phpunit54.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/php-doctrine-dbal-phpunit54.patch b/php-doctrine-dbal-phpunit54.patch
deleted file mode 100644
index 8c53d09..0000000
--- a/php-doctrine-dbal-phpunit54.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- tests/Doctrine/Tests/DBAL/Functional/Schema/SchemaManagerFunctionalTestCase.php.old 2016-06-13 17:57:43.021134891 +0200
-+++ tests/Doctrine/Tests/DBAL/Functional/Schema/SchemaManagerFunctionalTestCase.php 2016-06-13 17:57:47.140157022 +0200
-@@ -275,7 +275,8 @@
-
- $this->_sm->dropAndCreateTable($table);
-
-- $listenerMock = $this->getMock('ListTableColumnsDispatchEventListener', array('onSchemaColumnDefinition'));
-+ $listenerMock = $this->getMockObjectGenerator()->getMock('ListTableColumnsDispatchEventListener', array('onSchemaColumnDefinition'));
-+ $this->registerMockObject($listenerMock);
- $listenerMock
- ->expects($this->exactly(7))
- ->method('onSchemaColumnDefinition');
-@@ -300,7 +301,8 @@
-
- $this->_sm->dropAndCreateTable($table);
-
-- $listenerMock = $this->getMock('ListTableIndexesDispatchEventListener', array('onSchemaIndexDefinition'));
-+ $listenerMock = $this->getMockObjectGenerator()->getMock('ListTableIndexesDispatchEventListener', array('onSchemaIndexDefinition'));
-+ $this->registerMockObject($listenerMock);
- $listenerMock
- ->expects($this->exactly(3))
- ->method('onSchemaIndexDefinition');