Explorar el Código

Merge branch 'hotfix/638'

Close #638
Matthew Weier O'Phinney hace 10 años
padre
commit
1ba1a876b4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      tests/Zend/Db/Adapter/Pdo/TestCommon.php

+ 1 - 1
tests/Zend/Db/Adapter/Pdo/TestCommon.php

@@ -98,6 +98,6 @@ abstract class Zend_Db_Adapter_Pdo_TestCommon extends Zend_Db_Adapter_TestCommon
     {
         $string = "1\0";
         $value  = $this->_db->quote($string);
-        $this->assertEquals("'1\\000'", $value);
+        $this->assertNotContains("\0", $value);
     }
 }