Commit 3c97fc1e authored by jarekj's avatar jarekj Committed by Steve Müller

Update QueryBuilderTest.php

parent 706bb7bd
...@@ -636,7 +636,7 @@ class QueryBuilderTest extends \Doctrine\Tests\DbalTestCase ...@@ -636,7 +636,7 @@ class QueryBuilderTest extends \Doctrine\Tests\DbalTestCase
->join('a', 'table_b', 'b', 'a.fk_b = b.id') ->join('a', 'table_b', 'b', 'a.fk_b = b.id')
->join('b', 'table_a', 'a', 'a.fk_b = b.id'); ->join('b', 'table_a', 'a', 'a.fk_b = b.id');
$this->setExpectedException('QueryException'); $this->setExpectedException('Doctrine\DBAL\Query\QueryException');
$this->assertEquals( $this->assertEquals(
'dumb string', 'dumb string',
$qb->getSQL() $qb->getSQL()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment