Skip to content

Commit

Permalink
Fix test's assertion argument list order
Browse files Browse the repository at this point in the history
  • Loading branch information
kfirba committed Jan 12, 2018
1 parent 75aecbd commit 58ca9fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/QueryGeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function it_generates_a_query_object_for_a_given_resource()

$this->assertInstanceOf(QueryObject::class, $queryObject);
$this->assertEquals($expectedQuery, $queryObject->getQuery());
$this->assertEquals($queryObject->getBindings(), $expectedBindings);
$this->assertEquals($expectedBindings, $queryObject->getBindings());
}

protected function getTestResources()
Expand Down

0 comments on commit 58ca9fd

Please sign in to comment.