diff --git a/test/unit_test/geography_test.cpp b/test/unit_test/geography_test.cpp index 2b11bfa8..82f679cc 100644 --- a/test/unit_test/geography_test.cpp +++ b/test/unit_test/geography_test.cpp @@ -67,7 +67,7 @@ BOOST_AUTO_TEST_CASE(raster) using raster_type = quetzal::geography::raster; using latlon = raster_type::latlon; - auto file = std::filesystem::current_path() / "test/data/bio1.tif"; + auto file = std::filesystem::current_path() / "data/bio1.tif"; auto bio1 = raster_type::from_file(file, {2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010}); @@ -205,7 +205,7 @@ BOOST_AUTO_TEST_CASE(resolution) BOOST_AUTO_TEST_CASE(gdalcppTest) { - auto file = std::filesystem::current_path() / "test/data/bio1.tif"; + auto file = std::filesystem::current_path() / "data/bio1.tif"; quetzal::geography::gdalcpp::Dataset data(file.string());