Skip to content

Commit 3201f73

Browse files
committed
Apply renaming to the last few test classes
1 parent 238c04e commit 3201f73

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

ur_robot_driver/test/integration_test_controller_switch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ def generate_test_description(tf_prefix):
6565
return generate_driver_test_description(tf_prefix=tf_prefix)
6666

6767

68-
class RobotDriverTest(unittest.TestCase):
68+
class ControllerSwitchTest(unittest.TestCase):
6969
@classmethod
7070
def setUpClass(cls):
7171
# Initialize the ROS context
7272
rclpy.init()
73-
cls.node = Node("robot_driver_test")
73+
cls.node = Node("controller_switching_test")
7474
time.sleep(1)
7575
cls.init_robot(cls)
7676

ur_robot_driver/test/integration_test_force_mode.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,12 @@ def generate_test_description(tf_prefix):
8888
return generate_driver_test_description(tf_prefix=tf_prefix)
8989

9090

91-
class RobotDriverTest(unittest.TestCase):
91+
class ForceModeTest(unittest.TestCase):
9292
@classmethod
9393
def setUpClass(cls):
9494
# Initialize the ROS context
9595
rclpy.init()
96-
cls.node = Node("robot_driver_test")
96+
cls.node = Node("force_mode_test")
9797
time.sleep(1)
9898
cls.init_robot(cls)
9999

ur_robot_driver/test/integration_test_tool_contact.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ def generate_test_description(tf_prefix):
6262
return generate_driver_test_description(tf_prefix=tf_prefix)
6363

6464

65-
class RobotDriverTest(unittest.TestCase):
65+
class ToolContactTest(unittest.TestCase):
6666
@classmethod
6767
def setUpClass(cls):
6868
# Initialize the ROS context
6969
rclpy.init()
70-
cls.node = Node("robot_driver_test")
70+
cls.node = Node("tool_contact_test")
7171
time.sleep(1)
7272
cls.init_robot(cls)
7373

0 commit comments

Comments
 (0)