Skip to content

Commit

Permalink
test: fix insurance no longer mandatory towards belgium
Browse files Browse the repository at this point in the history
  • Loading branch information
joerivanveen committed Jan 18, 2024
1 parent ad3ac28 commit 3be3816
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions test/Model/Consignment/ConsignmentShipmentOptionsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ public function provideLargeFormatData(): array
AbstractConsignment::CC_BE
),
self::LARGE_FORMAT => true,
self::expected(self::INSURANCE) => 500,
self::expected(self::ONLY_RECIPIENT) => true,
self::expected(self::SIGNATURE) => true,
self::expected(self::INSURANCE) => 0,
self::expected(self::ONLY_RECIPIENT) => false,
self::expected(self::SIGNATURE) => false,
],
]);
}
Expand Down
6 changes: 3 additions & 3 deletions test/Model/Consignment/PostNLConsignmentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ public function providePostNLConsignmentsData(): array
return $this->createConsignmentProviderDataset([
'NL -> NL' => [],
'NL -> BE' => $this->getDefaultAddress(AbstractConsignment::CC_BE) + [
self::expected(self::INSURANCE) => 500,
self::expected(self::ONLY_RECIPIENT) => true,
self::expected(self::SIGNATURE) => true,
self::expected(self::INSURANCE) => 0,
self::expected(self::ONLY_RECIPIENT) => false,
self::expected(self::SIGNATURE) => false,
],
'BE -> BE' => $this->getDefaultAddress(AbstractConsignment::CC_BE) + [
self::API_KEY => $this->getApiKey(self::ENV_API_KEY_BE),
Expand Down

0 comments on commit 3be3816

Please sign in to comment.