Skip to content

Commit

Permalink
[Fixup] test
Browse files Browse the repository at this point in the history
  • Loading branch information
im-denisenko committed Jun 18, 2015
1 parent ea7c628 commit 1add0ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/lib/Elastica/Test/QueryBuilder/DSL/QueryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ public function testInterface()
$this->_assertImplemented($queryDSL, 'bool', 'Elastica\Query\BoolQuery', array());
$this->_assertImplemented($queryDSL, 'boosting', 'Elastica\Query\Boosting', array());
$this->_assertImplemented($queryDSL, 'common_terms', 'Elastica\Query\Common', array('field', 'query', 0.001));
$this->_assertImplemented($queryDSL, 'constant_score', 'Elastica\Query\ConstantScore', array());
$this->_assertImplemented($queryDSL, 'constant_score', 'Elastica\Query\ConstantScore', array(new Match()));
$this->_assertImplemented($queryDSL, 'dis_max', 'Elastica\Query\DisMax', array());
$this->_assertImplemented($queryDSL, 'filtered', 'Elastica\Query\Filtered', array(new Match(), new Exists('field')));
$this->_assertImplemented($queryDSL, 'function_score', 'Elastica\Query\FunctionScore', array());
$this->_assertImplemented($queryDSL, 'fuzzy', 'Elastica\Query\Fuzzy', array());
$this->_assertImplemented($queryDSL, 'fuzzy', 'Elastica\Query\Fuzzy', array('field', 'type'));
$this->_assertImplemented($queryDSL, 'fuzzy_like_this', 'Elastica\Query\FuzzyLikeThis', array());
$this->_assertImplemented($queryDSL, 'has_child', 'Elastica\Query\HasChild', array(new Match()));
$this->_assertImplemented($queryDSL, 'has_parent', 'Elastica\Query\HasParent', array(new Match(), 'type'));
Expand Down

0 comments on commit 1add0ae

Please sign in to comment.