Skip to content

Commit

Permalink
Merge pull request #238 from dhalbert/test_recv_timeout
Browse files Browse the repository at this point in the history
increase test_recv_timeout delay
  • Loading branch information
dhalbert authored Feb 4, 2025
2 parents 57ed4f0 + 0a504ff commit 08253c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_recv_timeout.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def test_recv_timeout_vs_keepalive(self) -> None:
mqtt_client.ping()

now = time.monotonic()
assert recv_timeout <= (now - start) <= (keep_alive + 0.2)
assert recv_timeout <= (now - start) <= (keep_alive + 0.5)


if __name__ == "__main__":
Expand Down

0 comments on commit 08253c4

Please sign in to comment.