summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/core/Lang_test.php
diff options
context:
space:
mode:
authorHeesung Ahn <ahn.heesung@gmail.com>2015-03-30 18:08:11 +0200
committerHeesung Ahn <ahn.heesung@gmail.com>2015-03-30 18:08:11 +0200
commitfc67a701a574641b5dfd7afe00d4c5d403111626 (patch)
treee3a187f1366dffffb526d51fb8bee27fb1aaffc2 /tests/codeigniter/core/Lang_test.php
parentd1f39fdef53fc510a6a5d19ec2991e5bc474bc29 (diff)
changed to lowercase array and space.
Signed-off-by:Heesung Ahn <ahn.heesung@gmail.com>
Diffstat (limited to 'tests/codeigniter/core/Lang_test.php')
-rw-r--r--tests/codeigniter/core/Lang_test.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/codeigniter/core/Lang_test.php b/tests/codeigniter/core/Lang_test.php
index 3fccf096d..0f6ffd3fa 100644
--- a/tests/codeigniter/core/Lang_test.php
+++ b/tests/codeigniter/core/Lang_test.php
@@ -53,9 +53,9 @@ class Lang_test extends CI_TestCase {
{
// Multiple files
$this->ci_vfs_clone('system/language/english/profiler_lang.php');
- $files = Array(
- 0 => 'profiler',
- 1 => 'nonexistent'
+ $files = array(
+ 0 => 'profiler',
+ 1 => 'nonexistent'
);
$this->setExpectedException(
'RuntimeException',