Skip to content

Commit

Permalink
assertion fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladislav Veselinov authored and Ocramius committed Jan 13, 2015
1 parent 79bf84e commit 7598361
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Doctrine/Tests/ORM/Functional/SQLFilterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ public function testSQLFilterGetConnection()
$reflMethod = new \ReflectionMethod('Doctrine\ORM\Query\Filter\SQLFilter', 'getConnection');
$reflMethod->setAccessible(true);

$this->assertTrue($reflMethod->invoke($filter) === $conn);
$this->assertSame($conn, $reflMethod->invoke($filter));
}

public function testSQLFilterSetParameterInfersType()
Expand Down

0 comments on commit 7598361

Please sign in to comment.