diff options
author | Master Yoda <jim_parry@bcit.ca> | 2015-09-24 16:25:32 +0200 |
---|---|---|
committer | Master Yoda <jim_parry@bcit.ca> | 2015-09-24 16:25:32 +0200 |
commit | 4f674091a22fa07d034eebef5848620fca6f9ca2 (patch) | |
tree | 3258f0a331c4fbf2a1457f419fb7ed0898c255be /tests/codeigniter | |
parent | 9f1b1bc3dd18ec8439b3fda6ac92c2cd87da31fb (diff) |
Fix the tabs
Signed-off-by:Master Yoda <jim_parry@bcit.ca>
Diffstat (limited to 'tests/codeigniter')
-rw-r--r-- | tests/codeigniter/core/Lang_test.php | 8 |
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'); } |