From 279b682419ad4a80e502db0914335faebbbe68d0 Mon Sep 17 00:00:00 2001 From: Enrico Zimuel Date: Wed, 18 Jun 2014 16:25:31 +0200 Subject: [PATCH] Fixed the unit tests for issue #378 --- tests/Zend/Db/Select/Pdo/PgsqlTest.php | 2 +- tests/Zend/Db/Select/Pdo/SqliteTest.php | 2 +- tests/Zend/Db/Select/StaticTest.php | 2 +- tests/Zend/Db/Select/TestCommon.php | 2 +- tests/Zend/Db/Table/Select/Pdo/PgsqlTest.php | 2 +- tests/Zend/Db/Table/Select/Pdo/SqliteTest.php | 2 +- tests/Zend/Db/Table/Select/StaticTest.php | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/Zend/Db/Select/Pdo/PgsqlTest.php b/tests/Zend/Db/Select/Pdo/PgsqlTest.php index d27fb871e0..596f2b7e88 100644 --- a/tests/Zend/Db/Select/Pdo/PgsqlTest.php +++ b/tests/Zend/Db/Select/Pdo/PgsqlTest.php @@ -184,7 +184,7 @@ public function testOrderOfMultiFieldButOnlyOneWithDirection() * @group ZF-378 * @group ZF-381 */ - public function testOrderOfConditionalFieldWithDirection($adapter) + public function testOrderOfConditionalFieldWithDirection() { $select = $this->_db->select(); $select->from(array ('p' => 'product')) diff --git a/tests/Zend/Db/Select/Pdo/SqliteTest.php b/tests/Zend/Db/Select/Pdo/SqliteTest.php index 2794f8f078..6d02f2fc1a 100644 --- a/tests/Zend/Db/Select/Pdo/SqliteTest.php +++ b/tests/Zend/Db/Select/Pdo/SqliteTest.php @@ -231,7 +231,7 @@ public function testOrderOfMultiFieldButOnlyOneWithDirection() * @group ZF-378 * @group ZF-381 */ - public function testOrderOfConditionalFieldWithDirection($adapter) + public function testOrderOfConditionalFieldWithDirection() { $select = $this->_db->select(); $select->from(array ('p' => 'product')) diff --git a/tests/Zend/Db/Select/StaticTest.php b/tests/Zend/Db/Select/StaticTest.php index f6cd44b967..2d69534936 100644 --- a/tests/Zend/Db/Select/StaticTest.php +++ b/tests/Zend/Db/Select/StaticTest.php @@ -878,7 +878,7 @@ public function testOrderOfMultiFieldButOnlyOneWithDirection() * @group ZF-378 * @group ZF-381 */ - public function testOrderOfConditionalFieldWithDirection($adapter) + public function testOrderOfConditionalFieldWithDirection() { $select = $this->_db->select(); $select->from(array ('p' => 'product')) diff --git a/tests/Zend/Db/Select/TestCommon.php b/tests/Zend/Db/Select/TestCommon.php index 47a42792cd..1d8139c964 100644 --- a/tests/Zend/Db/Select/TestCommon.php +++ b/tests/Zend/Db/Select/TestCommon.php @@ -1814,7 +1814,7 @@ public function testOrderOfMultiFieldButOnlyOneWithDirection() * @group ZF-378 * @group ZF-381 */ - public function testOrderOfConditionalFieldWithDirection($adapter) + public function testOrderOfConditionalFieldWithDirection() { $select = $this->_db->select(); $select->from(array ('p' => 'product')) diff --git a/tests/Zend/Db/Table/Select/Pdo/PgsqlTest.php b/tests/Zend/Db/Table/Select/Pdo/PgsqlTest.php index e48b4fb25c..42017bd609 100644 --- a/tests/Zend/Db/Table/Select/Pdo/PgsqlTest.php +++ b/tests/Zend/Db/Table/Select/Pdo/PgsqlTest.php @@ -188,7 +188,7 @@ public function testOrderOfMultiFieldButOnlyOneWithDirection() * @group ZF-378 * @group ZF-381 */ - public function testOrderOfConditionalFieldWithDirection($adapter) + public function testOrderOfConditionalFieldWithDirection() { $select = $this->_db->select(); $select->from(array ('p' => 'product')) diff --git a/tests/Zend/Db/Table/Select/Pdo/SqliteTest.php b/tests/Zend/Db/Table/Select/Pdo/SqliteTest.php index 8d949c2a1e..ba5b1f4133 100644 --- a/tests/Zend/Db/Table/Select/Pdo/SqliteTest.php +++ b/tests/Zend/Db/Table/Select/Pdo/SqliteTest.php @@ -235,7 +235,7 @@ public function testOrderOfMultiFieldButOnlyOneWithDirection() * @group ZF-378 * @group ZF-381 */ - public function testOrderOfConditionalFieldWithDirection($adapter) + public function testOrderOfConditionalFieldWithDirection() { $select = $this->_db->select(); $select->from(array ('p' => 'product')) diff --git a/tests/Zend/Db/Table/Select/StaticTest.php b/tests/Zend/Db/Table/Select/StaticTest.php index c4c3152e1f..e23ac251ee 100644 --- a/tests/Zend/Db/Table/Select/StaticTest.php +++ b/tests/Zend/Db/Table/Select/StaticTest.php @@ -754,7 +754,7 @@ public function testOrderOfMultiFieldButOnlyOneWithDirection() * @group ZF-378 * @group ZF-381 */ - public function testOrderOfConditionalFieldWithDirection($adapter) + public function testOrderOfConditionalFieldWithDirection() { $select = $this->_db->select(); $select->from(array ('p' => 'product'))