fix: better MoneyValidatorTest

This commit is contained in:
2024-01-18 14:24:45 +01:00
parent 172cf058fe
commit 574dba85ad

View File

@@ -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']];
}
}