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/codeigniter/database/query_builder/where_test.php b/tests/codeigniter/database/query_builder/where_test.php index 607eaa0..6a92c6f 100644 --- a/tests/codeigniter/database/query_builder/where_test.php +++ b/tests/codeigniter/database/query_builder/where_test.php
@@ -74,7 +74,7 @@ */ 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();