Skip to content

Commit

Permalink
Remove redundant argument
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Mar 16, 2024
1 parent 83ff1a5 commit 426e7ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/testing/src/Support/TestView.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function assertSeeTimes(string $value, int $times = 1): static
*/
public function assertSeeOnce(string $value): static
{
return $this->assertSeeTimes($value, 1);
return $this->assertSeeTimes($value);
}

/**
Expand Down

0 comments on commit 426e7ca

Please sign in to comment.