Skip to content

Commit

Permalink
fixed ORM test :p
Browse files Browse the repository at this point in the history
  • Loading branch information
Cédric Girard committed Oct 23, 2013
1 parent 379fec7 commit 73efd7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/Filter/Doctrine/ORMQueryBuilderUpdaterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ public function testNumberRange()

public function testNumberRangeWithSelector()
{
parent::createNumberRangeCompoundTest('getSQL', array(
'SELECT i FROM Lexik\Bundle\FormFilterBundle\Tests\Fixtures\Entity\Item i WHERE (i.position_selector > 4) AND (i.position_selector <= 8)',
parent::createNumberRangeCompoundTest('getDQL', array(
'SELECT i FROM Lexik\Bundle\FormFilterBundle\Tests\Fixtures\Entity\Item i WHERE i.position_selector > 4 AND i.position_selector <= 8',
));
}

Expand Down

0 comments on commit 73efd7a

Please sign in to comment.