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 f61c5bc commit 7178030Copy full SHA for 7178030
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 (
36
- cls.ROS_MSG_TYPE.split("/")[1] == cls.__name__
37
- ), "Class {} does not match to the ROS msg type name={}".format(cls.__name__, cls.ROS_MSG_TYPE)
+ 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