rawgpsd: adjust startup time threshold

This commit is contained in:
Adeeb Shihadeh 2023-06-24 22:25:31 -07:00 committed by GitHub
parent 0c223b4814
commit 689ff7e060
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class TestRawgpsd(unittest.TestCase):
assert self._wait_for_output(), "rawgpsd didn't start outputting messages in time"
et = time.monotonic() - start_time
assert et < 5, f"rawgpsd took {et:.1f}s to start"
assert et < 7, f"rawgpsd took {et:.1f}s to start"
managed_processes['rawgpsd'].stop()
def test_turns_off_gnss(self):