diff --git a/tests/NumericHelperTest.php b/tests/NumericHelperTest.php index 0a9e95e..bed4066 100644 --- a/tests/NumericHelperTest.php +++ b/tests/NumericHelperTest.php @@ -171,7 +171,7 @@ public function testConvertHumanReadableSizeToBytesWithInvalidStrings(string $st NumericHelper::convertHumanReadableSizeToBytes($string); } - public static function decimalZerosProvider(): array + public static function dataTrimDecimalZeros(): array { return [ 'no decimals in integer with zeros' => ['390', '390'], @@ -187,7 +187,7 @@ public static function decimalZerosProvider(): array ]; } - #[DataProvider('decimalZerosProvider')] + #[DataProvider('dataTrimDecimalZeros')] public function testTrimDecimalZeros(?string $input, ?string $expected): void { $this->assertSame($expected, NumericHelper::trimDecimalZeros($input));