Skip to content

Commit

Permalink
Fix incorrect type.
Browse files Browse the repository at this point in the history
Column is an integer not a float.
  • Loading branch information
markstory committed Sep 9, 2016
1 parent 49dc283 commit fd8c0a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/Database/QueryTest.php
Expand Up @@ -723,7 +723,7 @@ public function testSelectWhereTypes()
'id' => '1something-crazy',
'created <' => new \DateTime('2013-01-01 12:00')
],
['created' => 'datetime', 'id' => 'float']
['created' => 'datetime', 'id' => 'integer']
)
->execute();
$this->assertCount(1, $result);
Expand Down

0 comments on commit fd8c0a4

Please sign in to comment.