Skip to content

Commit f65bae0

Browse files
committed
ITT: Minor fixes into assertions.
1 parent b6a8412 commit f65bae0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Asserts/ArtisanAsserts.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ protected function willSeeConfirmation($question, $command, array $parameters =
1919
protected function willNotSeeConfirmation($question, $command, array $parameters = [])
2020
{
2121
$mock = Mockery::mock("{$command}[confirm]");
22-
$mock->shouldNotReceive('confirm')->once()->with($question);
22+
$mock->shouldNotReceive('confirm')->with($question);
2323

2424
$this->runArtisan($mock, $parameters);
2525
}

0 commit comments

Comments
 (0)