Skip to content
Snippets Groups Projects
Unverified Commit aa0344bd authored by Simonas Šerlinskas's avatar Simonas Šerlinskas
Browse files

fix php psr2 style issues

parent fa40862c
No related branches found
No related tags found
No related merge requests found
......@@ -14,8 +14,9 @@ namespace ONGR\ElasticsearchDSL\Tests\Functional;
use Elasticsearch\Client;
use Elasticsearch\ClientBuilder;
use ONGR\ElasticsearchDSL\Search;
use PHPUnit\Framework\TestCase;
abstract class AbstractElasticsearchTestCase extends \PHPUnit\Framework\TestCase
abstract class AbstractElasticsearchTestCase extends TestCase
{
/**
* Test index name in the elasticsearch.
......
......@@ -43,7 +43,7 @@ class MatchAllQueryTest extends AbstractElasticsearchTestCase
$matchAll = new MatchAllQuery();
$search->addQuery($matchAll);
$q = $search->getQueries();
$results = $this->executeSearch($search);
$this->assertEquals($this->getDataArray()['product'], $results);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment