Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mandan2 committed Sep 19, 2023
1 parent 1a4feb0 commit 44f1eea
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ public function testItSuccessfullyPresentsOrder(): void
$order->method('getCartProducts')->willReturn($products);
$order->method('getProducts')->willReturn($products);

$orderPresenter = new OrderPresenter();
/** @var OrderPresenter $orderPresenter */
$orderPresenter = $this->getService(OrderPresenter::class);

$result = $orderPresenter->present(
$order,
Expand Down

0 comments on commit 44f1eea

Please sign in to comment.