Left here to keep tests running. Later we would need to split tests so they start testing each function separately.
(
runnertype_parameter_info,
action_parameter_info,
liveaction_parameters,
action_context,
)
| 370 | |
| 371 | |
| 372 | def get_finalized_params( |
| 373 | runnertype_parameter_info, |
| 374 | action_parameter_info, |
| 375 | liveaction_parameters, |
| 376 | action_context, |
| 377 | ): |
| 378 | """ |
| 379 | Left here to keep tests running. Later we would need to split tests so they start testing each |
| 380 | function separately. |
| 381 | """ |
| 382 | params = render_live_params( |
| 383 | runnertype_parameter_info, |
| 384 | action_parameter_info, |
| 385 | liveaction_parameters, |
| 386 | action_context, |
| 387 | ) |
| 388 | return render_final_params( |
| 389 | runnertype_parameter_info, action_parameter_info, params, action_context |
| 390 | ) |
nothing calls this directly
no test coverage detected