mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-22 08:09:15 +00:00
Update MissingArgumentsTest.php
Misplaced "middle missing" argument.
This commit is contained in:
@@ -26,7 +26,7 @@ class MissingArgumentsTest extends TestCase
|
||||
return [
|
||||
'argument missing at end' => [0, '=min(3,2,)'],
|
||||
'argument missing at beginning' => [0, '=mina(,3,2)'],
|
||||
'argument missing in middle' => [0, '=min(,3,2)'],
|
||||
'argument missing in middle' => [0, '=min(3,,2)'],
|
||||
'missing argument is not result' => [-2, '=min(3,-2,)'],
|
||||
'max with missing argument' => [0, '=max(-3,-2,)'],
|
||||
'maxa with missing argument' => [0, '=maxa(-3,-2,)'],
|
||||
|
||||
Reference in New Issue
Block a user