diff options
Diffstat (limited to 'libpqpp/unittests/testpq.cpp')
-rw-r--r-- | libpqpp/unittests/testpq.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpqpp/unittests/testpq.cpp b/libpqpp/unittests/testpq.cpp index 4f36ae7..954366a 100644 --- a/libpqpp/unittests/testpq.cpp +++ b/libpqpp/unittests/testpq.cpp @@ -152,7 +152,7 @@ BOOST_AUTO_TEST_CASE( testP2MockScriptDir ) while (select->fetch()) { std::string path; (*select)[0] >> path; - BOOST_REQUIRE(boost::filesystem::exists(path)); + BOOST_REQUIRE(std::filesystem::exists(path)); } } |