Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: ament_${{ matrix.linter }}
runs-on: ubuntu-latest
container:
image: rostooling/setup-ros-docker:ubuntu-noble-ros-rolling-ros-base-latest
image: ghcr.io/ros-tooling/setup-ros-docker/setup-ros-docker-ubuntu-resolute-ros-rolling-ros-base:master
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build_and_test:
runs-on: ubuntu-latest
container:
image: rostooling/setup-ros-docker:ubuntu-noble-latest
image: ghcr.io/ros-tooling/setup-ros-docker/setup-ros-docker-ubuntu-resolute:latest
steps:
- uses: ros-tooling/action-ros-ci@v0.4
with:
Expand Down
3 changes: 0 additions & 3 deletions topic_tools/test/test_topic_tool.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ class TestTopicToolSingleSub : public TestTopicTool
public:
void SetUp()
{
using std::placeholders::_1;
const std::string test_name =
::testing::UnitTest::GetInstance()->current_test_info()->name();
test_node_ = rclcpp::Node::make_shared(test_name);
Expand Down Expand Up @@ -124,7 +123,6 @@ class TestTopicToolMultiSub : public TestTopicTool
public:
void SetUp()
{
using std::placeholders::_1;
const std::string test_name =
::testing::UnitTest::GetInstance()->current_test_info()->name();
test_node_ = rclcpp::Node::make_shared(test_name);
Expand Down Expand Up @@ -196,7 +194,6 @@ class TestTopicToolMultiPub : public TestTopicTool
public:
void SetUp()
{
using std::placeholders::_1;
const std::string test_name = ::testing::UnitTest::GetInstance()->current_test_info()->name();
test_node_ = rclcpp::Node::make_shared(test_name);
executor_ = std::make_shared<rclcpp::executors::SingleThreadedExecutor>();
Expand Down
Loading