diff --git a/lib/Cake/Test/Case/Model/Datasource/Database/PostgresTest.php b/lib/Cake/Test/Case/Model/Datasource/Database/PostgresTest.php index a3a80d28481..e43ec8fbde8 100644 --- a/lib/Cake/Test/Case/Model/Datasource/Database/PostgresTest.php +++ b/lib/Cake/Test/Case/Model/Datasource/Database/PostgresTest.php @@ -1024,7 +1024,8 @@ public function testLimit() { $this->assertEquals(' LIMIT 20 OFFSET 10', $result); $result = $db->limit(10, 300000000000000000000000000000); - $this->assertEquals(' LIMIT 10 OFFSET 0', $result); + $scientificNotation = sprintf('%.1E', 300000000000000000000000000000); + $this->assertNotContains($scientificNotation, $result); } }