We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c3399d commit fed2456Copy full SHA for fed2456
tests/backends/ros/messages/test_std_msgs.py
@@ -32,9 +32,9 @@ def test_subclasses_define_type_name():
32
33
def test_consistent_naming():
34
for cls in ROSmsg.__subclasses__():
35
- assert cls.ROS_MSG_TYPE.split("/")[1] == cls.__name__, (
36
- "Class {} does not match to the ROS msg type name={}".format(cls.__name__, cls.ROS_MSG_TYPE)
37
- )
+ assert (
+ cls.ROS_MSG_TYPE.split("/")[1] == cls.__name__
+ ), "Class {} does not match to the ROS msg type name={}".format(cls.__name__, cls.ROS_MSG_TYPE)
38
39
40
def test_uniqueness_of_msg_type():
0 commit comments