Skip to content

Commit

Permalink
assertInDatabase must be public
Browse files Browse the repository at this point in the history
  • Loading branch information
jildertmiedema committed May 19, 2015
1 parent e1c1def commit 05465d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Extensions/IntegrationTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ public function notSeeFile($path)
* @param boolean $negate
* @return static
*/
protected function assertInDatabase($table, array $data, $message, $negate = false)
public function assertInDatabase($table, array $data, $message, $negate = false)
{
$count = $this->seeRowsWereReturned($table, $data);
$method = $negate ? 'assertEquals' : 'assertGreaterThan';
Expand Down

0 comments on commit 05465d5

Please sign in to comment.