summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/codeigniter/core/Lang_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codeigniter/core/Lang_test.php b/tests/codeigniter/core/Lang_test.php
index 263bb9665..4958f42e1 100644
--- a/tests/codeigniter/core/Lang_test.php
+++ b/tests/codeigniter/core/Lang_test.php
@@ -56,7 +56,7 @@ class Lang_test extends CI_TestCase {
// test without existing file
$this->ci_vfs_clone('system/language/english/email_lang.php');
$this->assertTrue($this->lang->load('email', '456funny'));
- $this->assertEquals('Bytes', $this->lang->language['bytes']);
+ $this->assertEquals('You did not specify a SMTP hostname.', $this->lang->language['email_no_hostname']);
}
// --------------------------------------------------------------------