summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/core/Lang_test.php
diff options
context:
space:
mode:
authorMaster Yoda <jim_parry@bcit.ca>2015-09-24 16:27:33 +0200
committerMaster Yoda <jim_parry@bcit.ca>2015-09-24 16:27:33 +0200
commitdeabce0f19610949a297093516527837ee094469 (patch)
treeeb1b444c64c4bbcfc6a08fed499f21acff00d676 /tests/codeigniter/core/Lang_test.php
parentfcb4129694951a8e43aacbdbaa08688d1c7c7225 (diff)
Fix the tabs
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.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/codeigniter/core/Lang_test.php b/tests/codeigniter/core/Lang_test.php
index c5aaf04b2..263bb9665 100644
--- a/tests/codeigniter/core/Lang_test.php
+++ b/tests/codeigniter/core/Lang_test.php
@@ -34,11 +34,6 @@ class Lang_test extends CI_TestCase {
$this->assertTrue($this->lang->load('email', 'german'));
$this->assertEquals('german', $this->lang->is_loaded['email_lang.php']);
- // Non-alpha idiom (should act the same as unspecified language)
- $this->ci_vfs_clone('system/language/english/number_lang.php');
- $this->assertTrue($this->lang->load('number'));
- $this->assertEquals('Bytes', $this->lang->language['bytes']);
-
// Non-existent file
$this->setExpectedException(
'RuntimeException',