summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaster Yoda <jim_parry@bcit.ca>2015-09-24 16:25:32 +0200
committerMaster Yoda <jim_parry@bcit.ca>2015-09-24 16:25:32 +0200
commit4f674091a22fa07d034eebef5848620fca6f9ca2 (patch)
tree3258f0a331c4fbf2a1457f419fb7ed0898c255be
parent9f1b1bc3dd18ec8439b3fda6ac92c2cd87da31fb (diff)
Fix the tabs
Signed-off-by:Master Yoda <jim_parry@bcit.ca>
-rw-r--r--tests/codeigniter/core/Lang_test.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/codeigniter/core/Lang_test.php b/tests/codeigniter/core/Lang_test.php
index 1aa5212ac..8197028a2 100644
--- a/tests/codeigniter/core/Lang_test.php
+++ b/tests/codeigniter/core/Lang_test.php
@@ -41,8 +41,8 @@ class Lang_test extends CI_TestCase {
// Non-existent file
$this->setExpectedException(
- 'RuntimeException',
- 'CI Error: Unable to load the requested language file: language/english/nonexistent_lang.php'
+ 'RuntimeException',
+ 'CI Error: Unable to load the requested language file: language/english/nonexistent_lang.php'
);
$this->lang->load('nonexistent');
}
@@ -75,8 +75,8 @@ class Lang_test extends CI_TestCase {
1 => 'nonexistent'
);
$this->setExpectedException(
- 'RuntimeException',
- 'CI Error: Unable to load the requested language file: language/english/nonexistent_lang.php'
+ 'RuntimeException',
+ 'CI Error: Unable to load the requested language file: language/english/nonexistent_lang.php'
);
$this->lang->load($files, 'english');
}