From eeaaab6b62fc2aeeb24768988c86c29ea90d3422 Mon Sep 17 00:00:00 2001 From: ralferlebach Date: Sat, 19 Oct 2024 15:17:24 +0200 Subject: [PATCH] Update mathcat_test.php --- tests/mathcat_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mathcat_test.php b/tests/mathcat_test.php index 70f62bd14..53166f6ce 100644 --- a/tests/mathcat_test.php +++ b/tests/mathcat_test.php @@ -150,7 +150,7 @@ public static function conversion_of_array_to_vector_provider(): array { 'modified and reordered' => [ 'given' => [0, 'first' => 2, 'second' => [7, 9, 8], 'third' => 5], 'expected' => [0 => 0.0, 'first' => 2.0, 'second' => [1 => 7.0, 3 => 9.0, 2 => 8.0], 'third' => 5.0], - 'structure' => [0 => 0, 'first' => 1, 'second' => [0 => 2, 1 => 4, 2 => 3], 'third' => 5], + 'structure' => [0 => 0, 'first' => 1, 'second' => [0 => 2, 1 => 3, 2 => 4], 'third' => 5], ], // Forbidden cases: strings in array, empty arrays.