File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Sources/ComposableArchitecture/TestSupport Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 295295 Must handle \( receivedActions. count) received \
296296 action \( receivedActions. count == 1 ? " " : " s " ) before sending an action: …
297297
298- Unhandled actions: \( debugOutput ( receivedActions) )
298+ Unhandled actions: \( debugOutput ( receivedActions. map { $0 . action } ) )
299299 """ ,
300300 file: step. file, line: step. line
301301 )
355355 Must handle \( receivedActions. count) received \
356356 action \( receivedActions. count == 1 ? " " : " s " ) before performing this work: …
357357
358- Unhandled actions: \( debugOutput ( receivedActions) )
358+ Unhandled actions: \( debugOutput ( receivedActions. map { $0 . action } ) )
359359 """ ,
360360 file: step. file, line: step. line
361361 )
373373 Must handle \( receivedActions. count) received \
374374 action \( receivedActions. count == 1 ? " " : " s " ) before performing this work: …
375375
376- Unhandled actions: \( debugOutput ( receivedActions) )
376+ Unhandled actions: \( debugOutput ( receivedActions. map { $0 . action } ) )
377377 """ ,
378378 file: step. file, line: step. line
379379 )
392392 Received \( receivedActions. count) unexpected \
393393 action \( receivedActions. count == 1 ? " " : " s " ) : …
394394
395- Unhandled actions: \( debugOutput ( receivedActions) )
395+ Unhandled actions: \( debugOutput ( receivedActions. map { $0 . action } ) )
396396 """ ,
397397 file: file, line: line
398398 )
You can’t perform that action at this time.
0 commit comments