Skip to content
This repository was archived by the owner on Oct 8, 2025. It is now read-only.
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
17 changes: 16 additions & 1 deletion easynav_simple_common/tests/simple_maps_tests.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
// Copyright 2025 Intelligent Robotics Lab
//
// Licensed under the GNU General Public License v3.0.
// This file is part of the project Easy Navigation (EasyNav in short)
// licensed under the GNU General Public License v3.0.
// See <http://www.gnu.org/licenses/> for details.
//
// Easy Navigation program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.

#include <gtest/gtest.h>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ SimpleMapsManager::on_initialize()
node->get_parameter(plugin_name + ".package", package_name);
node->get_parameter(plugin_name + ".map_path_file", map_path_file);

map_path_ = "/tmp/default.map";
if (package_name != "" && map_path_file != "") {
std::string pkgpath;
try {
Expand Down
Loading