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

Update QueryBuilderTest.php

parent 181800db
......@@ -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;
require_once __DIR__ . '/../../TestInit.php';
......@@ -880,7 +879,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