summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/core/Lang_test.php
diff options
context:
space:
mode:
authorMaster Yoda <jim_parry@bcit.ca>2015-09-21 16:22:25 +0200
committerMaster Yoda <jim_parry@bcit.ca>2015-09-21 16:22:25 +0200
commit9f1b1bc3dd18ec8439b3fda6ac92c2cd87da31fb (patch)
tree257fed644a5edf13b423fba4897862c2cfe8b550 /tests/codeigniter/core/Lang_test.php
parentb183fb897a30b95520aeb0613d933e85db441d3a (diff)
Changes suggested by Andrey
Signed-off-by:Master Yoda <jim_parry@bcit.ca>
Diffstat (limited to 'tests/codeigniter/core/Lang_test.php')
-rw-r--r--tests/codeigniter/core/Lang_test.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/codeigniter/core/Lang_test.php b/tests/codeigniter/core/Lang_test.php
index f8c12d884..1aa5212ac 100644
--- a/tests/codeigniter/core/Lang_test.php
+++ b/tests/codeigniter/core/Lang_test.php
@@ -41,7 +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');
}
@@ -74,7 +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');
}