From de16517991456f313f6534b4ae107200fe5cfe6b Mon Sep 17 00:00:00 2001 From: zYne Date: Thu, 15 Nov 2007 22:01:39 +0000 Subject: [PATCH] --- tests/Query/MultiJoin2TestCase.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Query/MultiJoin2TestCase.php b/tests/Query/MultiJoin2TestCase.php index 66532907d..7341c5db8 100644 --- a/tests/Query/MultiJoin2TestCase.php +++ b/tests/Query/MultiJoin2TestCase.php @@ -89,7 +89,7 @@ class Doctrine_Query_MultiJoin2_TestCase extends Doctrine_UnitTestCase $categories[0]->subCategories; $this->assertEqual($queryCount + 1, $this->connection->count()); } catch (Doctrine_Exception $e) { - $this->fail(); + $this->fail($e->getMessage()); } } @@ -109,7 +109,7 @@ class Doctrine_Query_MultiJoin2_TestCase extends Doctrine_UnitTestCase ->execute(array(), Doctrine::FETCH_ARRAY); $this->pass(); } catch (Doctrine_Exception $e) { - $this->fail(); + $this->fail($e->getMessage()); } } }