Skip to content

Commit

Permalink
test: fix incorrect param value types
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Oct 23, 2023
1 parent 978ae15 commit b0ff3b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/system/Validation/CreditCardRulesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function provideValidCCNumber(): iterable
],
'random_test' => [
'amex',
$this->generateCardNumber('37', 16),
$this->generateCardNumber(37, 16),
false,
],
'invalid_type' => [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function provideValidCCNumber(): iterable
],
'random_test' => [
'amex',
$this->generateCardNumber('37', 16),
$this->generateCardNumber(37, 16),
false,
],
'invalid_type' => [
Expand Down

0 comments on commit b0ff3b4

Please sign in to comment.