Skip to content

Commit

Permalink
Fixed the test.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulchubatyy committed Aug 28, 2012
1 parent aa4f09c commit 802109c
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -201,11 +201,11 @@ public function testIsNotNull()

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()
{
$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)));
}
}

0 comments on commit 802109c

Please sign in to comment.