Skip to content

Commit

Permalink
change tests (right?)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinElst committed Oct 23, 2024
1 parent 97ec2f0 commit eff0b20
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Test/Unit/Model/CreditCard/BrandsManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ public function inputProviderBrandsManager(): array
'paymentMethodsResponse' => [
'paymentMethodsResponse' => [
'paymentMethods' => [
'card' => [
[
'type' => 'scheme',
'brands' => ['mc', 'visa'],
],
'somethings_irrelevant' => [
[
'type' => 'somethings_irrelevant',
'brands' => [],
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function testExecute()
];

$paymentMethods = [
'card' => [],
'scheme' => [],
'googlepay' => [],
'bmcm' => []
];
Expand Down
4 changes: 2 additions & 2 deletions Test/Unit/Model/PaymentMethod/PaymentMethodsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ public function inputProviderPaymentMethods(): array
'paymentMethodsResponse' => [
'paymentMethodsResponse' => [
'paymentMethods' => [
'card' => [
[
'type' => 'scheme',
'brands' => ['mc', 'visa'],
],
'somethings_else' => [
[
'type' => 'something_else',
'brands' => [],
],
Expand Down

0 comments on commit eff0b20

Please sign in to comment.