We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bab38d0 commit 271822eCopy full SHA for 271822e
tests/integration/progress/test_workflow_runs.py
@@ -22,7 +22,7 @@ def test_workflow_run_recorder_records_workflow_run(installation_ctx) -> None:
22
rows = list(ctx.sql_backend.fetch(select_workflow_runs_query))
23
assert len(rows) == 1
24
assert rows[0].started_at == start_time
25
- assert start_time < rows[0].finished_at < dt.datetime.now(tz=dt.timezone.utc)
+ assert start_time <= rows[0].finished_at <= dt.datetime.now(tz=dt.timezone.utc)
26
assert rows[0].workspace_id == 123456789
27
assert rows[0].workflow_name == "test"
28
assert rows[0].workflow_id == 123
0 commit comments