Skip to content

Commit

Permalink
foo
Browse files Browse the repository at this point in the history
  • Loading branch information
im-denisenko committed Jun 3, 2015
1 parent f4b205e commit f9a5642
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/lib/Elastica/Test/QueryBuilder/DSL/QueryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ class QueryTest extends AbstractDSLTest
*/
public function testType()
{
$dsl = new DSL\Query();
$queryDSL = new DSL\Query();

$this->assertInstanceOf('Elastica\QueryBuilder\DSL', $dsl);
$this->assertEquals(DSL::TYPE_QUERY, $dsl->getType());
$this->assertInstanceOf('Elastica\QueryBuilder\DSL', $queryDSL);
$this->assertEquals(DSL::TYPE_QUERY, $queryDSL->getType());
}

/**
Expand Down

0 comments on commit f9a5642

Please sign in to comment.