Skip to content

Commit a22666c

Browse files
committed
Update to leverage std::filesystem
1 parent 348fb45 commit a22666c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tesseract_motion_planners/simple/test/simple_planner_test_utils.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ class TesseractPlanningSimplePlannerUnit : public ::testing::Test
4646
{
4747
auto locator = std::make_shared<tesseract_common::GeneralResourceLocator>();
4848
Environment::Ptr env = std::make_shared<Environment>();
49-
tesseract_common::fs::path urdf_path(
49+
std::filesystem::path urdf_path(
5050
locator->locateResource("package://tesseract_support/urdf/lbr_iiwa_14_r820.urdf")->getFilePath());
51-
tesseract_common::fs::path srdf_path(
51+
std::filesystem::path srdf_path(
5252
locator->locateResource("package://tesseract_support/urdf/lbr_iiwa_14_r820.srdf")->getFilePath());
5353
EXPECT_TRUE(env->init(urdf_path, srdf_path, locator));
5454
env_ = env;

0 commit comments

Comments
 (0)