summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/core/Lang_test.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2015-03-30 18:27:06 +0200
committerAndrey Andreev <narf@devilix.net>2015-03-30 18:27:06 +0200
commit928134324d75ed4a876237ec00d4374b2213586a (patch)
treefd3934de71121027000ac6e76cdc1f4161e3bf5b /tests/codeigniter/core/Lang_test.php
parent0f38e7406c0b172693b2c3d5b95054be9ddb2b1f (diff)
[ci skip] Whitespace cleanup following PRs #3713 #3714
Diffstat (limited to 'tests/codeigniter/core/Lang_test.php')
-rw-r--r--tests/codeigniter/core/Lang_test.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/codeigniter/core/Lang_test.php b/tests/codeigniter/core/Lang_test.php
index 0f6ffd3fa..d2dd7598a 100644
--- a/tests/codeigniter/core/Lang_test.php
+++ b/tests/codeigniter/core/Lang_test.php
@@ -46,15 +46,15 @@ class Lang_test extends CI_TestCase {
);
$this->lang->load('nonexistent');
}
-
+
// --------------------------------------------------------------------
-
+
public function test_multiple_file_load()
- {
+ {
// Multiple files
$this->ci_vfs_clone('system/language/english/profiler_lang.php');
$files = array(
- 0 => 'profiler',
+ 0 => 'profiler',
1 => 'nonexistent'
);
$this->setExpectedException(
@@ -65,14 +65,14 @@ class Lang_test extends CI_TestCase {
}
// --------------------------------------------------------------------
-
+
public function test_alternative_path_load()
{
// Alternative Path
$this->ci_vfs_clone('system/language/english/profiler_lang.php');
$this->assertTrue($this->lang->load('profiler', 'english', FALSE, TRUE, 'vfs://system/'));
}
-
+
// --------------------------------------------------------------------
/**