Skip to content

Commit

Permalink
Fixed another failing test case
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Apr 15, 2012
1 parent f574e96 commit 05b88f3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/Cake/Test/Case/View/ViewTest.php
Expand Up @@ -1066,9 +1066,7 @@ public function testRenderCache() {
$f = fopen($path, 'w+');
fwrite($f, $cacheText);
fclose($f);
ob_start();
$View->renderCache($path, '+1 second');
$result = ob_get_clean();
$result = $View->renderCache($path, '+1 second');

$this->assertRegExp('/^some cacheText/', $result);

Expand Down

0 comments on commit 05b88f3

Please sign in to comment.