Skip to content

Commit

Permalink
Fix bool query test (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz committed Aug 16, 2022
1 parent 92e5cea commit 25f3630
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tests/Unit/Query/Compound/BoolQueryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,8 @@ public function testBoolConstructor()
*/
public function testBoolConstructorException()
{
<<<<<<< HEAD
$this->expectExceptionMessage("The bool operator acme is not supported");
$this->expectException(\UnexpectedValueException::class);
=======
$this->expectException(\UnexpectedValueException::class);
$this->expectExceptionMessage('The bool operator acme is not supported');
>>>>>>> 6c412555354f92407045a93b42c393bfb49fb0fa
new BoolQuery([
'acme' => [new TermQuery('key1', 'value1')],
]);
Expand Down

0 comments on commit 25f3630

Please sign in to comment.