Skip to content

Commit

Permalink
fixup! IBX-6649: Added support for spell checking
Browse files Browse the repository at this point in the history
  • Loading branch information
adamwojs committed Dec 5, 2023
1 parent 036141c commit c32b561
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/Core/Repository/SearchServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4675,7 +4675,7 @@ public function testSpellcheckWithIncorrectQuery(): void

self::assertNotNull($results->spellcheck);
self::assertTrue($results->spellcheck->isIncorrect());
self::assertEquals('Contact Us', $results->spellcheck->getQuery());
self::assertEqualsIgnoringCase('Contact Us', $results->spellcheck->getQuery());
}

public function testSpellcheckWithCorrectQuery(): void
Expand All @@ -4694,7 +4694,7 @@ public function testSpellcheckWithCorrectQuery(): void

self::assertNotNull($results->spellcheck);
self::assertFalse($results->spellcheck->isIncorrect());
self::assertEquals('Contact Us', $results->spellcheck->getQuery());
self::assertEqualsIgnoringCase('Contact Us', $results->spellcheck->getQuery());
}

/**
Expand Down

0 comments on commit c32b561

Please sign in to comment.