From 865ca7acd6a4f1fc1787d62472139ff1a1650c92 Mon Sep 17 00:00:00 2001 From: euromark Date: Mon, 6 Jan 2014 20:43:30 +0100 Subject: [PATCH] wording --- lib/Cake/TestSuite/Fixture/CakeTestFixture.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Cake/TestSuite/Fixture/CakeTestFixture.php b/lib/Cake/TestSuite/Fixture/CakeTestFixture.php index 8e5f66cb7..04aaa4484 100644 --- a/lib/Cake/TestSuite/Fixture/CakeTestFixture.php +++ b/lib/Cake/TestSuite/Fixture/CakeTestFixture.php @@ -265,7 +265,7 @@ class CakeTestFixture { * * @param DboSource $db An instance of the database into which the records will be inserted * @return boolean on success or if there are no records to insert, or false on failure - * @throws CakeException if count of values and fields does not match. + * @throws CakeException if counts of values and fields do not match. */ public function insert($db) { if (!isset($this->_insert)) { @@ -286,7 +286,6 @@ class CakeTestFixture { } $nested = $db->useNestedTransactions; $db->useNestedTransactions = false; - $result = $db->insertMulti($this->table, $fields, $values); if ( $this->primaryKey &&