Skip to content

Commit 8bc19ce

Browse files
committed
test: remove redundant PHPUnit DataProvider attribute in BCMathTest
1 parent 879fe21 commit 8bc19ce

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

tests/BCMathTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,6 @@ public static function providePowCases(): iterable
162162
*/
163163
#[DataProvider('providePowCases')]
164164
#[RequiresPhp('>7.3')]
165-
#[\PHPUnit\Framework\Attributes\DataProvider('providePowCases')]
166165
public function testPow(string $base, string $exponent, ?int $scale = null): void
167166
{
168167
$a = $scale !== null ? bcpow($base, $exponent, $scale) : bcpow($base, $exponent);

0 commit comments

Comments
 (0)