From 7ef8c534e43f2b40b1e52790828768b648f4f9c6 Mon Sep 17 00:00:00 2001 From: Benji Fisher <benji@FisherFam.org> Date: Thu, 10 Dec 2020 22:43:52 -0500 Subject: [PATCH] 244: Apparently, array_map() does not handle keyed arrays --- tests/src/Unit/process/TransposeTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/src/Unit/process/TransposeTest.php b/tests/src/Unit/process/TransposeTest.php index 30f08e26..7b900625 100644 --- a/tests/src/Unit/process/TransposeTest.php +++ b/tests/src/Unit/process/TransposeTest.php @@ -50,8 +50,8 @@ class TransposeTest extends MigrateProcessTestCase { ], 'image files and alt text' => [ 'input' => [ - 'src' => ['2.png', '3.png', '5.png', '7.png'], - 'alt' => ['two', 'three', 'five', 'seven'], + ['2.png', '3.png', '5.png', '7.png'], + ['two', 'three', 'five', 'seven'], ], 'expected_output' => [ ['2.png', 'two'], -- GitLab