Skip to content

Commit

Permalink
iox-eclipse-iceoryx#495 remove calculation from callback integrationt…
Browse files Browse the repository at this point in the history
…ests

Signed-off-by: Dietrich Krönke <[email protected]>
  • Loading branch information
dkroenke authored and marthtz committed May 12, 2021
1 parent bded78b commit 3f26b0f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ def test_callback_example_data_exchange(self, proc_output):
proc_output.assertWaitFor(
'Radar.FrontRight.Counter sending : 16', timeout=45, stream='stdout')
proc_output.assertWaitFor(
'received: 10', timeout=45, stream='stdout')
'received: 20', timeout=45, stream='stdout')
proc_output.assertWaitFor(
'Received samples from FrontLeft and FrontRight. Sum of 9 + 16 = 25', timeout=45, stream='stdout')
'Received samples from FrontLeft and FrontRight. Sum of', timeout=45, stream='stdout')

# These tests run after shutdown and examine the stdout log

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ def test_callback_example_data_exchange(self, proc_output):
proc_output.assertWaitFor(
'Radar.FrontRight.Counter sending : 16', timeout=45, stream='stdout')
proc_output.assertWaitFor(
'received: 10', timeout=45, stream='stdout')
'received: 20', timeout=45, stream='stdout')
proc_output.assertWaitFor(
'Received samples from FrontLeft and FrontRight. Sum of 9 + 22 = 31', timeout=45, stream='stdout')
'Received samples from FrontLeft and FrontRight. Sum of', timeout=45, stream='stdout')

# These tests run after shutdown and examine the stdout log

Expand Down

0 comments on commit 3f26b0f

Please sign in to comment.