Skip to content

Commit 8dd96ea

Browse files
committed
Change test action names
1 parent 1c1e8e7 commit 8dd96ea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

rosbridge_library/test/capabilities/test_action_capabilities.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def test_result_invalid_arguments(self):
8383
self.assertRaises(InvalidArgumentException, self.result.action_result, result_msg)
8484

8585
def test_advertise_action(self):
86-
action_path = "/fibonacci_1"
86+
action_path = "/fibonacci_action_1"
8787
advertise_msg = loads(
8888
dumps(
8989
{
@@ -97,7 +97,7 @@ def test_advertise_action(self):
9797

9898
def test_execute_advertised_action(self):
9999
# Advertise the action
100-
action_path = "/fibonacci_2"
100+
action_path = "/fibonacci_action_2"
101101
advertise_msg = loads(
102102
dumps(
103103
{
@@ -200,7 +200,7 @@ def test_execute_advertised_action(self):
200200

201201
def test_cancel_advertised_action(self):
202202
# Advertise the action
203-
action_path = "/fibonacci_3"
203+
action_path = "/fibonacci_action_3"
204204
advertise_msg = loads(
205205
dumps(
206206
{
@@ -267,7 +267,7 @@ def test_cancel_advertised_action(self):
267267
@unittest.skip("Currently raises an exception not catchable by unittest, need to fix this")
268268
def test_unadvertise_action(self):
269269
# Advertise the action
270-
action_path = "/fibonacci_4"
270+
action_path = "/fibonacci_action_4"
271271
advertise_msg = loads(
272272
dumps(
273273
{

0 commit comments

Comments
 (0)