From 2eb0392b8a98df485915010e8c7131b53b7ddfd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Lorenzo=20Rodr=C3=ADguez?= Date: Mon, 25 Oct 2010 19:47:53 -0430 Subject: [PATCH] Removing forced trucation of tables in fixture loading, it was not really needed --- cake/tests/lib/cake_test_fixture.php | 1 - 1 file changed, 1 deletion(-) diff --git a/cake/tests/lib/cake_test_fixture.php b/cake/tests/lib/cake_test_fixture.php index fee5721b66c..b7676cf5c13 100644 --- a/cake/tests/lib/cake_test_fixture.php +++ b/cake/tests/lib/cake_test_fixture.php @@ -163,7 +163,6 @@ public function drop(&$db) { * @return boolean on success or if there are no records to insert, or false on failure */ public function insert(&$db) { - $this->truncate($db); if (!isset($this->_insert)) { $values = array(); if (isset($this->records) && !empty($this->records)) {