Skip to content

Commit

Permalink
fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mhor committed Feb 14, 2024
1 parent e6b2e65 commit 8d3783d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/Runner/MediaInfoCommandRunnerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,7 @@ public function testRunAsync()
$process = $this->prophesize(Process::class);
$process
->start()
->shouldBeCalled()
->willReturn($process);
->shouldBeCalled();

$process
->wait()
Expand Down Expand Up @@ -119,8 +118,7 @@ public function testRunAsyncFail()
$process = $this->prophesize(Process::class);
$process
->start()
->shouldBeCalled()
->willReturn($process);
->shouldBeCalled();

$process
->wait()
Expand Down

0 comments on commit 8d3783d

Please sign in to comment.