diff --git a/tests/Collection/SnapshotTestCase.php b/tests/Collection/SnapshotTestCase.php index 38bc323b4..2a7bf8ca2 100644 --- a/tests/Collection/SnapshotTestCase.php +++ b/tests/Collection/SnapshotTestCase.php @@ -63,8 +63,6 @@ class Doctrine_Collection_Snapshot_TestCase extends Doctrine_UnitTestCase $count = $this->conn->count(); $coll->save(); - print $this->conn->count(); - print $count; $this->connection->clear(); $coll = Doctrine_Query::create()->from('User u')->execute(); diff --git a/tests/Record/HookTestCase.php b/tests/Record/HookTestCase.php index 3f5e6b858..033b62d98 100644 --- a/tests/Record/HookTestCase.php +++ b/tests/Record/HookTestCase.php @@ -40,7 +40,7 @@ class Doctrine_Record_Hook_TestCase extends Doctrine_UnitTestCase parent::prepareTables(); } - /** + public function testInsertHooksGetInvoked() { $r = new RecordHookTest(); @@ -78,7 +78,7 @@ class Doctrine_Record_Hook_TestCase extends Doctrine_UnitTestCase $this->assertEqual($r->pop(), 'postDelete'); $this->assertEqual($r->pop(), 'preDelete'); } - */ + public function testSoftDelete() { $r = new SoftDeleteTest();