fix: better MoneyValidatorTest

This commit is contained in:
Ondrej Vlach 2024-01-18 14:24:45 +01:00
parent 172cf058fe
commit 574dba85ad
Signed by: ovlach
GPG Key ID: 4FF1A23B4914DE70

View File

@ -35,6 +35,6 @@ class MoneyValidatorTest extends ValidatorTestCase
} }
private function failureDp(): array { 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']];
} }
} }