diff options
author | Master Yoda <jim_parry@bcit.ca> | 2015-09-26 19:05:45 +0200 |
---|---|---|
committer | Master Yoda <jim_parry@bcit.ca> | 2015-09-26 19:05:45 +0200 |
commit | ddb80e7402697b6ca995f31810ad9e1c8f380b81 (patch) | |
tree | 08b6db612908cca2594ce2d8d252e2877c47ad71 /tests/codeigniter | |
parent | deabce0f19610949a297093516527837ee094469 (diff) |
Fix the testing of non-alhpa idioms
Signed-off-by:Master Yoda <jim_parry@bcit.ca>
Diffstat (limited to 'tests/codeigniter')
-rw-r--r-- | tests/codeigniter/core/Lang_test.php | 2 |
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']); } // -------------------------------------------------------------------- |