Browse Source

ZF-8809
General test cleanup


git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@20674 44c647ce-9c0f-0410-b52a-842ac1e357ba

ralph 16 years ago
parent
commit
b353249fe2
1 changed files with 0 additions and 2 deletions
  1. 0 2
      tests/Zend/Db/Statement/Pdo/TestCommon.php

+ 0 - 2
tests/Zend/Db/Statement/Pdo/TestCommon.php

@@ -94,8 +94,6 @@ abstract class Zend_Db_Statement_Pdo_TestCommon extends Zend_Db_Statement_TestCo
         } catch (Zend_Exception $e) {
             $this->assertType('Zend_Db_Statement_Exception', $e,
                 'Expecting object of type Zend_Db_Statement_Exception, got '.get_class($e));
-//            $this->assertTrue($e->hasChainedException());
-//            $this->assertType('PDOException', $e->getChainedException());
             $this->assertTrue($e->hasChainedException(), 'Missing Chained Exception');
             $this->assertType('PDOException', $e->getChainedException(), 'Wrong type of Exception');
         }