Skip to content

Commit 75e4505

Browse files
author
MarkBaker
committed
Fix scrutinizer issue complaint
1 parent c8cf193 commit 75e4505

File tree

1 file changed

+2
-2
lines changed
  • tests/PhpSpreadsheetTests/Calculation/Functions/LookupRef

1 file changed

+2
-2
lines changed

tests/PhpSpreadsheetTests/Calculation/Functions/LookupRef/UniqueTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ class UniqueTest extends TestCase
1111
/**
1212
* @dataProvider uniqueTestProvider
1313
*/
14-
public function testUnique(array $expectedResult, ...$args): void
14+
public function testUnique(array $expectedResult, array $lookupRef, bool $byColumn = false, bool $exactlyOnce = false): void
1515
{
16-
$result = LookupRef\Unique::unique(...$args);
16+
$result = LookupRef\Unique::unique($lookupRef, $byColumn, $exactlyOnce);
1717
self::assertEquals($expectedResult, $result);
1818
}
1919

0 commit comments

Comments
 (0)