Skip to content

Commit

Permalink
TestClient.test_service_timestamps failing consistently. (#1364)
Browse files Browse the repository at this point in the history
Signed-off-by: Tomoya Fujita <[email protected]>
  • Loading branch information
fujitatomoya authored Oct 1, 2024
1 parent 2de5c8e commit 7f9a307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rclpy/test/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def test_service_timestamps(self):
for i in range(5):
with srv.handle:
result = srv.handle.service_take_request(srv.srv_type.Request)
if result is not None:
if result != (None, None):
request, header = result
self.assertTrue(header is not None)
self.assertNotEqual(0, header.source_timestamp)
Expand Down

0 comments on commit 7f9a307

Please sign in to comment.