diff options
author | Alex Bilbie <alex@alexbilbie.com> | 2012-06-02 12:12:55 +0200 |
---|---|---|
committer | Alex Bilbie <alex@alexbilbie.com> | 2012-06-02 12:12:55 +0200 |
commit | d6d1150959c95e43d310d0bc45f8bd674ff6460c (patch) | |
tree | d5868c3dc4fbd22bcfc6d57a650b9dbadca21a41 /tests/codeigniter/database/query_builder | |
parent | d261b1e89c3d4d5191036d5a5660ef6764e593a0 (diff) |
Replaced `==` with `===` and `!=` with `!==` in /tests
Diffstat (limited to 'tests/codeigniter/database/query_builder')
-rw-r--r-- | tests/codeigniter/database/query_builder/where_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codeigniter/database/query_builder/where_test.php b/tests/codeigniter/database/query_builder/where_test.php index 607eaa076..6a92c6fce 100644 --- a/tests/codeigniter/database/query_builder/where_test.php +++ b/tests/codeigniter/database/query_builder/where_test.php @@ -74,7 +74,7 @@ class Where_test extends CI_TestCase { */ public function test_where_custom_string() { - $where = "id > 2 AND name != 'Accountant'"; + $where = "id > 2 AND name !== 'Accountant'"; $jobs = $this->db->where($where) ->get('job') ->result_array(); |