Skip to content

Commit

Permalink
Update architect tests to match new timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
waveform80 committed Sep 8, 2023
1 parent afe300a commit c9a03ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/master/test_the_architect.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def test_architect_queue(db, with_build, task, builds_queue):
assert builds_queue.recv_msg() == ('QUEUE', {'cp35m': [['foo', '0.1']]})
with db.begin():
db.execute("DELETE FROM builds")
dt.now.return_value += timedelta(minutes=3)
dt.now.return_value += timedelta(minutes=63)
task.poll(0)
assert builds_queue.recv_msg() == ('QUEUE', {'cp34m': [['foo', '0.1']]})

Expand Down

0 comments on commit c9a03ff

Please sign in to comment.