Fix mistake in path.

Remove incorrectly added file.
This commit is contained in:
mark_story 2012-05-01 21:06:24 -04:00
parent d43e0aa0db
commit 7c4b7a2cbe
2 changed files with 2 additions and 17 deletions

View file

@ -138,7 +138,8 @@ class PhpReaderTest extends CakeTestCase {
PHP; PHP;
$file = $this->path . 'test.php'; $file = $this->path . 'test.php';
$contents = file_get_contents($file); $contents = file_get_contents($file);
@unlink($contents);
unlink($file);
$this->assertEquals($expected, $contents); $this->assertEquals($expected, $contents);
} }

View file

@ -1,16 +0,0 @@
<?php
$config = array (
'One' =>
array (
'two' => 'value',
'three' =>
array (
'four' => 'value four',
),
'null' => NULL,
),
'Asset' =>
array (
'timestamp' => 'force',
),
);