diff options
author | Alex Bilbie <alex@alexbilbie.com> | 2012-06-02 16:39:04 +0200 |
---|---|---|
committer | Alex Bilbie <alex@alexbilbie.com> | 2012-06-02 16:39:04 +0200 |
commit | 2be12da6a443e74fb3f5f64d12c4e0a7164503da (patch) | |
tree | 0f6dad1c44ea25b0fc15e3cc3227c0470b93bc6e | |
parent | 149c07726bb60df65766a1046e695b1897652cc7 (diff) |
Fixed bug created in `test_where_custom_string()` in /tests/codeigniter/database/query_builder/where_test.php by d6d1150959c95e43d310d0bc45f8bd674ff6460c
-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 6a92c6fce..607eaa076 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(); |