Skip to content

Commit

Permalink
Remove unnecessary comments given allow_multiple=False
Browse files Browse the repository at this point in the history
Signed-off-by: Christophe Bedard <christophe.bedard@apex.ai>
  • Loading branch information
christophebedard committed Apr 15, 2024
1 parent 4ba8cd0 commit 8f97ded
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions test_tracetools/test/test_buffer.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ def test_all(self):
# Check corresponding events for construct_buffer_event
for construct_event in construct_buffer_events:
target_buffer = self.get_field(construct_event, 'buffer')
# Only 1 for our given buffer
target_buffer_to_ipb_event = self.get_event_with_field_value_and_assert(
'buffer',
target_buffer,
Expand All @@ -65,7 +64,6 @@ def test_all(self):
)

target_ipb = self.get_field(target_buffer_to_ipb_event, 'ipb')
# Only 1 for our given ipb
target_ipb_to_subscription_event = self.get_event_with_field_value_and_assert(
'ipb',
target_ipb,
Expand Down
1 change: 0 additions & 1 deletion test_tracetools/test/test_generic_subscription.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ def test_all(self):

# Check that subscription pointer matches between rclcpp_sub_init and sub_callback_added
subscription_pointer = self.get_field(rclcpp_sub_init_matching_event, 'subscription')
# There is only one callback for /pong topic in ping node
callback_added_matching_event = self.get_event_with_field_value_and_assert(
'subscription',
subscription_pointer,
Expand Down
1 change: 0 additions & 1 deletion test_tracetools/test/test_intra.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ def test_all(self):

# Check rcl_subscription_init events
rcl_sub_init_events = self.get_events_with_name(tp.rcl_subscription_init)
# Only 1 for our given topic
rcl_sub_init_topic_event = self.get_event_with_field_value_and_assert(
'topic_name',
'/the_topic',
Expand Down
1 change: 0 additions & 1 deletion test_tracetools/test/test_subscription.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@ def test_all(self):

# Check that subscription pointer matches between rclcpp_sub_init and sub_callback_added
subscription_pointer = self.get_field(rclcpp_sub_init_matching_event, 'subscription')
# There is only one callback for /pong topic in ping node
callback_added_matching_event = self.get_event_with_field_value_and_assert(
'subscription',
subscription_pointer,
Expand Down

0 comments on commit 8f97ded

Please sign in to comment.