style: apply formatter
This commit is contained in:
parent
e64a32d76b
commit
3b6503a6ed
1 changed files with 5 additions and 1 deletions
|
|
@ -1088,7 +1088,11 @@ def test_render_execution_logs_handles_missing_execution_and_missing_log_file(
|
||||||
await render_execution_logs(app, job_id=job.id, execution_id=9999)
|
await render_execution_logs(app, job_id=job.id, execution_id=9999)
|
||||||
)
|
)
|
||||||
missing_log = str(
|
missing_log = str(
|
||||||
await render_execution_logs(app, job_id=job.id, execution_id=execution.id)
|
await render_execution_logs(
|
||||||
|
app,
|
||||||
|
job_id=job.id,
|
||||||
|
execution_id=int(execution.get_id()),
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
assert "Execution log unavailable" in missing_execution
|
assert "Execution log unavailable" in missing_execution
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue