Skip to content

Commit e5691aa

Browse files
committed
repair tests
1 parent 0090414 commit e5691aa

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,6 @@ target_include_directories(
7070
target_link_libraries(${PROJECT_NAME}_node argparse yaml-cpp
7171
${OpenCV_LIBRARIES})
7272

73-
install(DIRECTORY config DESTINATION share/${PROJECT_NAME})
74-
7573
install(TARGETS ${PROJECT_NAME}_node DESTINATION lib/${PROJECT_NAME})
7674

7775
ament_export_dependencies(rosidl_default_runtime)

test/detect_all_markers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ def main():
2727
rclpy.shutdown()
2828
return
2929

30-
future = cli.call_async()
30+
req = DetectBlocksPoses.Request()
31+
future = cli.call_async(req)
3132
rclpy.spin_until_future_complete(director.node, future, timeout_sec=10.0)
3233

3334
resp = future.result()

test/go_above_markers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ def main():
4444
rclpy.shutdown()
4545
return
4646

47-
future = cli.call_async()
47+
req = DetectBlocksPoses.Request()
48+
future = cli.call_async(req)
4849
rclpy.spin_until_future_complete(director.node, future, timeout_sec=10.0)
4950

5051
resp = future.result()

0 commit comments

Comments
 (0)