From 73ee354d00d5fff9035398bac145618f53adce97 Mon Sep 17 00:00:00 2001 From: oleibman <10341515+oleibman@users.noreply.github.com> Date: Tue, 16 Jan 2024 15:45:28 -0800 Subject: [PATCH] Update MissingArgumentsTest.php Misplaced "middle missing" argument. --- tests/PhpSpreadsheetTests/Calculation/MissingArgumentsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/PhpSpreadsheetTests/Calculation/MissingArgumentsTest.php b/tests/PhpSpreadsheetTests/Calculation/MissingArgumentsTest.php index 8b9b483ac..599933f86 100644 --- a/tests/PhpSpreadsheetTests/Calculation/MissingArgumentsTest.php +++ b/tests/PhpSpreadsheetTests/Calculation/MissingArgumentsTest.php @@ -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,)'],