Skip to content
Snippets Groups Projects
Commit 7ef8c534 authored by Benji Fisher's avatar Benji Fisher Committed by Lucas Hedding
Browse files

244: Apparently, array_map() does not handle keyed arrays

parent 705457fb
No related branches found
No related tags found
No related merge requests found
......@@ -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'],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment