commit | d6d1150959c95e43d310d0bc45f8bd674ff6460c | [log] [tgz] |
---|---|---|
author | Alex Bilbie <alex@alexbilbie.com> | Sat Jun 02 11:12:55 2012 +0100 |
committer | Alex Bilbie <alex@alexbilbie.com> | Sat Jun 02 11:12:55 2012 +0100 |
tree | d5868c3dc4fbd22bcfc6d57a650b9dbadca21a41 | |
parent | d261b1e89c3d4d5191036d5a5660ef6764e593a0 [diff] [blame] |
Replaced `==` with `===` and `!=` with `!==` in /tests
diff --git a/tests/mocks/core/common.php b/tests/mocks/core/common.php index e745766..e1c493a 100644 --- a/tests/mocks/core/common.php +++ b/tests/mocks/core/common.php
@@ -45,7 +45,7 @@ { function load_class($class, $directory = 'libraries', $prefix = 'CI_') { - if ($directory != 'core' OR $prefix != 'CI_') + if ($directory !== 'core' OR $prefix !== 'CI_') { throw new Exception('Not Implemented: Non-core load_class()'); }