Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Repeating previous change for SQLite, so it passes on PHP 5.5
  • Loading branch information
lorenzo committed Jun 6, 2013
1 parent 04a6bfb commit f14c559
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/Cake/Test/Case/Model/Datasource/Database/SqliteTest.php
Expand Up @@ -495,7 +495,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);
}

}

0 comments on commit f14c559

Please sign in to comment.