Skip to content

Commit f705925

Browse files
committed
Small doc tweak
1 parent b64e0a7 commit f705925

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/index.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,10 @@ ensuring the results are correct::
135135
with qtbot.waitSignal(app.worker.finished, timeout=10000) as blocker:
136136
blocker.connect(app.worker.failed) # Can add other signals to blocker
137137
app.worker.start()
138-
# Test will wait here until either signal is emitted, or 10 seconds has elapsed
138+
# Test will block at this point until signal is emitted or
139+
# 10 seconds has elapsed
139140

140-
assert blocker.signal_triggered # Assuming the work took less than 10 seconds
141+
assert blocker.signal_triggered, "process timed-out"
141142
assert_application_results(app)
142143

143144

0 commit comments

Comments
 (0)