Skip to content

Commit

Permalink
revert change
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Chen <[email protected]>
  • Loading branch information
iche033 committed Jun 17, 2024
1 parent 10b7266 commit d361332
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Util_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

#include <gtest/gtest.h>
#include <gz/common/Console.hh>
#include <gz/common/testing/TestPaths.hh>
#include <sdf/Actor.hh>
#include <sdf/Light.hh>
#include <sdf/Types.hh>
Expand Down Expand Up @@ -1020,7 +1019,8 @@ TEST_F(UtilTest, LoadMesh)
EXPECT_NE(nullptr, loadMesh(meshSdf));

meshSdf.SetUri("duck.dae");
std::string filePath = common::testing::TestFile("media", "duck.dae");
std::string filePath = common::joinPaths(std::string(PROJECT_SOURCE_PATH),
"test", "media", "duck.dae");
meshSdf.SetFilePath(filePath);
EXPECT_NE(nullptr, loadMesh(meshSdf));

Expand Down

0 comments on commit d361332

Please sign in to comment.