diff options
author | Andrey Andreev <narf@devilix.net> | 2015-07-22 12:52:50 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2015-07-22 12:52:50 +0200 |
commit | 5d064bb4c9aefff6051da0d0447a46ddd0667c99 (patch) | |
tree | 96375c94af6ed295070f1ad8f4182bcdc6bdfadb /tests/codeigniter/core | |
parent | 9e25daf2d7126f465ceb34789b6f76c9c77981b4 (diff) |
Fix testcases broken by b63dc1904e4f34cb48d7dce80155172c6e94d777
Diffstat (limited to 'tests/codeigniter/core')
-rw-r--r-- | tests/codeigniter/core/Loader_test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/codeigniter/core/Loader_test.php b/tests/codeigniter/core/Loader_test.php index cfaf6c74b..889ab92e4 100644 --- a/tests/codeigniter/core/Loader_test.php +++ b/tests/codeigniter/core/Loader_test.php @@ -229,7 +229,7 @@ class Loader_test extends CI_TestCase { $this->ci_obj->$obj = new stdClass(); $this->setExpectedException( 'RuntimeException', - 'CI Error: The model name you are loading is the name of a resource that is already being used: '.$obj + 'The model name you are loading is the name of a resource that is already being used: '.$obj ); $this->load->model('not_real', $obj); } @@ -240,7 +240,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' + 'Unable to locate the model you have specified: Ci_test_nonexistent_model.php' ); $this->load->model('ci_test_nonexistent_model.php'); |