Skip to content

Commit

Permalink
Fix test cases.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Mar 12, 2018
1 parent a71aa15 commit 8f0cde7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TestCase/Database/QueryTest.php
Expand Up @@ -1749,7 +1749,7 @@ public function testWhereInEmpty()
$query = new Query($this->connection);
$query->select(['id'])
->from('articles')
->whereIn('id', [], true)
->whereIn('id', [], ['allowEmpty' => true])
->execute();
$sql = $query->sql();

Expand Down Expand Up @@ -1799,7 +1799,7 @@ public function testWhereNotInEmpty()
$query = new Query($this->connection);
$query->select(['id'])
->from('articles')
->whereNotIn('id', [], true)
->whereNotIn('id', [], ['allowEmpty' => true])
->execute();
$sql = $query->sql();

Expand Down

0 comments on commit 8f0cde7

Please sign in to comment.