Repeating previous change for SQLite, so it passes on PHP 5.5

This commit is contained in:
Jose Lorenzo Rodriguez 2013-06-06 18:12:07 +02:00
parent 04a6bfbda6
commit f14c55916f

View file

@ -495,7 +495,8 @@ class SqliteTest extends CakeTestCase {
$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);
}
}