mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-03 18:12:40 +00:00
ucfirst object names part two (Folder/File)
Signed-off-by: mark_story <mark@mark-story.com>
This commit is contained in:
parent
621cb43e93
commit
dcc17f2091
5 changed files with 44 additions and 44 deletions
|
@ -378,7 +378,7 @@ class HtmlHelperTest extends CakeTestCase {
|
|||
App::uses('File', 'Utility');
|
||||
|
||||
$testfile = WWW_ROOT . 'theme' . DS . 'test_theme' . DS . 'img' . DS . '__cake_test_image.gif';
|
||||
$file = new File($testfile, true);
|
||||
$File = new File($testfile, true);
|
||||
|
||||
App::build(array(
|
||||
'views' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'View'. DS)
|
||||
|
@ -662,7 +662,7 @@ class HtmlHelperTest extends CakeTestCase {
|
|||
App::uses('File', 'Utility');
|
||||
|
||||
$testfile = WWW_ROOT . 'theme' . DS . 'test_theme' . DS . 'js' . DS . '__test_js.js';
|
||||
$file = new File($testfile, true);
|
||||
$File = new File($testfile, true);
|
||||
|
||||
App::build(array(
|
||||
'views' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'View'. DS)
|
||||
|
@ -676,8 +676,8 @@ class HtmlHelperTest extends CakeTestCase {
|
|||
);
|
||||
$this->assertTags($result, $expected);
|
||||
|
||||
$folder = new Folder(WWW_ROOT . 'theme' . DS . 'test_theme');
|
||||
$folder->delete();
|
||||
$Folder = new Folder(WWW_ROOT . 'theme' . DS . 'test_theme');
|
||||
$Folder->delete();
|
||||
App::build();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue