Commit 802109c0 authored by Paul Chubatyy's avatar Paul Chubatyy

Fixed the test.

parent aa4f09ce
...@@ -201,11 +201,11 @@ class ExpressionBuilderTest extends \Doctrine\Tests\DbalTestCase ...@@ -201,11 +201,11 @@ class ExpressionBuilderTest extends \Doctrine\Tests\DbalTestCase
public function testIn() public function testIn()
{ {
$this->assertEquals('u.groups IN (1,3,4,7)', $this->expr->in('u.groups', array(1,3,4,7))); $this->assertEquals('u.groups IN (1, 3, 4, 7)', $this->expr->in('u.groups', array(1,3,4,7)));
} }
public function testNotIn() public function testNotIn()
{ {
$this->assertEquals('u.groups NOT IN (1,3,4,7)', $this->expr->notIn('u.groups', array(1,3,4,7))); $this->assertEquals('u.groups NOT IN (1, 3, 4, 7)', $this->expr->notIn('u.groups', array(1,3,4,7)));
} }
} }
\ No newline at end of file
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