Browse Source

Fixed typo in method call

José Lorenzo Rodríguez 10 years ago
parent
commit
ebe5018799
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Database/Type/IntegerTypeTest.php

+ 1 - 1
tests/TestCase/Database/Type/IntegerTypeTest.php

@@ -69,7 +69,7 @@ class IntegerTypeTest extends TestCase
      */
     public function testToDatabase()
     {
-        $this->asserNull($this->type->toDatabase(null, $this->driver));
+        $this->assertNull($this->type->toDatabase(null, $this->driver));
 
         $result = $this->type->toDatabase('some data', $this->driver);
         $this->assertSame(0, $result);