File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 17
17
<exec_depend >trajectory_msgs</exec_depend >
18
18
<exec_depend >rosidl_runtime_py</exec_depend >
19
19
20
- <test_depend >action_tutorials_interfaces</test_depend >
21
20
<test_depend >ament_copyright</test_depend >
22
21
<test_depend >ament_flake8</test_depend >
23
22
<test_depend >ament_pep257</test_depend >
Original file line number Diff line number Diff line change 32
32
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33
33
# POSSIBILITY OF SUCH DAMAGE.
34
34
35
- import action_tutorials_interfaces .action
35
+ from example_interfaces .action import Fibonacci
36
36
from joy_teleop .joy_teleop import get_interface_type
37
37
from joy_teleop .joy_teleop import JoyTeleopException
38
38
@@ -55,9 +55,9 @@ def test_service():
55
55
56
56
57
57
def test_action ():
58
- interface_type = get_interface_type ('action_tutorials_interfaces /action/Fibonacci' , 'action' )
58
+ interface_type = get_interface_type ('example_interfaces /action/Fibonacci' , 'action' )
59
59
action = interface_type .Goal ()
60
- assert isinstance (action , action_tutorials_interfaces . action . Fibonacci .Goal )
60
+ assert isinstance (action , Fibonacci .Goal )
61
61
62
62
63
63
def test_bad_message ():
You can’t perform that action at this time.
0 commit comments