diff options
author | Andrey Andreev <narf@devilix.net> | 2013-07-22 13:39:18 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2013-07-22 13:39:18 +0200 |
commit | 20b0b2047c5b9ba363daaf46616fb43dc5d5bd02 (patch) | |
tree | 66656fcd087a08be670398f473720130034ad8e6 /tests/codeigniter | |
parent | 924a75521ba8810a2afb36e4da7e04dfec8711ae (diff) |
Fix Loader_test::test_non_existent_model()
Diffstat (limited to 'tests/codeigniter')
-rw-r--r-- | tests/codeigniter/core/Loader_test.php | 2 |
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'); |