Remove useless method in SearchEngineInterface

This commit is contained in:
Benoît Burnichon
2016-03-29 19:08:09 +02:00
parent 973826eeb3
commit 37883ed1ae
5 changed files with 0 additions and 89 deletions

View File

@@ -223,8 +223,6 @@ abstract class PhraseanetAuthenticatedWebTestCase extends \PhraseanetAuthenticat
$searchEngine = $this->prophesize(SearchEngineInterface::class);
$searchEngine->query('', 0, Argument::any(), Argument::any())
->willReturn($result);
$searchEngine->excerpt(Argument::any(), Argument::any(), Argument::any(), Argument::any())
->willReturn([]);
$app['search_engine'] = $searchEngine->reveal();
return $app;