Skip to content

Commit

Permalink
fix(test): fix test to align with a673914 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tharropoulos committed Oct 25, 2024
1 parent a673914 commit 2d9ba80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Unit/TypesenseEngineTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public function test_parse_where_filter_method()
{
$this->assertEquals('status:=active', $this->invokeMethod($this->engine, 'parseWhereFilter', ['active', 'status']));
$this->assertEquals('age:=25', $this->invokeMethod($this->engine, 'parseWhereFilter', ['25', 'age']));
$this->assertEquals('tags:[tag1,tag2,tag3]', $this->invokeMethod($this->engine, 'parseWhereFilter', [['tag1', 'tag2', 'tag3'], 'tags']));
$this->assertEquals('tags:tag1,tag2,tag3', $this->invokeMethod($this->engine, 'parseWhereFilter', [['tag1', 'tag2', 'tag3'], 'tags']));
}

public function test_parse_where_in_filter_method()
Expand Down

0 comments on commit 2d9ba80

Please sign in to comment.