summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/core
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2013-07-22 13:39:18 +0200
committerAndrey Andreev <narf@devilix.net>2013-07-22 13:39:18 +0200
commit20b0b2047c5b9ba363daaf46616fb43dc5d5bd02 (patch)
tree66656fcd087a08be670398f473720130034ad8e6 /tests/codeigniter/core
parent924a75521ba8810a2afb36e4da7e04dfec8711ae (diff)
Fix Loader_test::test_non_existent_model()
Diffstat (limited to 'tests/codeigniter/core')
-rw-r--r--tests/codeigniter/core/Loader_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codeigniter/core/Loader_test.php b/tests/codeigniter/core/Loader_test.php
index d7c393d61..18486cd05 100644
--- a/tests/codeigniter/core/Loader_test.php
+++ b/tests/codeigniter/core/Loader_test.php
@@ -236,7 +236,7 @@ class Loader_test extends CI_TestCase {
{
$this->setExpectedException(
'RuntimeException',
- 'CI Error: Unable to locate the model you have specified: ci_test_nonexistent_model.php'
+ 'CI Error: Unable to locate the model you have specified: Ci_test_nonexistent_model.php'
);
$this->load->model('ci_test_nonexistent_model.php');