From 574dba85ada9e40d1b0dd8f27c9de0912382273b Mon Sep 17 00:00:00 2001 From: Ondrej Vlach Date: Thu, 18 Jan 2024 14:24:45 +0100 Subject: [PATCH] fix: better MoneyValidatorTest --- tests/Validator/MoneyValidatorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Validator/MoneyValidatorTest.php b/tests/Validator/MoneyValidatorTest.php index a234620..8a869cd 100644 --- a/tests/Validator/MoneyValidatorTest.php +++ b/tests/Validator/MoneyValidatorTest.php @@ -35,6 +35,6 @@ class MoneyValidatorTest extends ValidatorTestCase } private function failureDp(): array { - return [['122.b'], ['a.a'], ['a'], ['2.040'], ['2,a']]; + return [['122.b'], ['a.a'], ['a'], ['2.040'], ['2,a'], ['-223']]; } }