Commit 20ea0aad authored by jarekj's avatar jarekj

Update QueryBuilderTest.php

parent 94288c29
......@@ -4,7 +4,6 @@ namespace Doctrine\Tests\DBAL\Query;
use Doctrine\DBAL\Query\Expression\ExpressionBuilder;
use Doctrine\DBAL\Query\QueryBuilder;
use Doctrine\DBAL\Query\QueryException;
/**
* @group DBAL-12
......@@ -878,7 +877,7 @@ class QueryBuilderTest extends \Doctrine\Tests\DbalTestCase
->join('a', 'table_b', 'b', '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(
'dumb string',
$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