diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-11-25 15:03:21 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-11-25 15:03:21 +0100 |
commit | 7e83f32e3844ba8ee34c8a79ee6fa3f558fcb46a (patch) | |
tree | 4e34391e215f8683b5de21bf67c9a65724813633 /tests | |
parent | 89ecc8a1c69bed3451d43d3f0a367f4e498d1b80 (diff) |
Revert some of the changes from PR #2029
We have file naming conventions and any extension filename needs to match MY_<orig_filename>,
so we don't need to check for lowercase equivalents.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/codeigniter/libraries/Driver_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codeigniter/libraries/Driver_test.php b/tests/codeigniter/libraries/Driver_test.php index 0186cfe97..fb5f3f020 100644 --- a/tests/codeigniter/libraries/Driver_test.php +++ b/tests/codeigniter/libraries/Driver_test.php @@ -72,7 +72,7 @@ class Driver_test extends CI_TestCase { $file = $this->name.'_'.$driver; $class = 'CI_'.$file; $content = '<?php class '.$class.' extends CI_Driver { }'; - $this->ci_vfs_create(strtolower($file), $content, $this->ci_app_root, + $this->ci_vfs_create($file, $content, $this->ci_app_root, array('libraries', $this->name, 'drivers')); // Make valid list |