Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Commit

Permalink
fix: wrong parent call in assertDontSeeIn (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanullrich authored and mpociot committed May 15, 2019
1 parent aa68b15 commit c12c31e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Dusk/Concerns/MakesAssertions.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public function assertDontSeeIn($selector, $text)
{
$this->actionCollector->collect(__FUNCTION__, func_get_args(), $this);

return parent::assertDontSeeLink($selector, $text);
return parent::assertDontSeeIn($selector, $text);
}

/** {@inheritdoc} */
Expand Down

0 comments on commit c12c31e

Please sign in to comment.