Skip to content

Commit

Permalink
CC-20625: Fixed abstract data builder to accurately incorporate the s…
Browse files Browse the repository at this point in the history
…eed data provided. (#10647)

CC-20625 Fixed abstract data builder to accurately incorporate the seed data provided.
  • Loading branch information
michbeck authored Nov 18, 2024
1 parent 1603b5d commit 5b89cd5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function testReplacesBundledItemsWithProductBundleItem(): void

$orderItemTransfer = $cartReorderTransfer->getOrderItems()->getIterator()->current();
$this->assertSame(static::TEST_PRODUCT_BUNDLE_IDENTIFIER, $orderItemTransfer->getBundleItemIdentifier());
$this->assertSame(1, $orderItemTransfer->getQuantity());
$this->assertEquals(1, $orderItemTransfer->getQuantity());
}

/**
Expand Down

0 comments on commit 5b89cd5

Please sign in to comment.