diff options
Diffstat (limited to 'project2/ut/testPresenter.cpp')
| -rw-r--r-- | project2/ut/testPresenter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/project2/ut/testPresenter.cpp b/project2/ut/testPresenter.cpp index 2b9c952..eb9ed59 100644 --- a/project2/ut/testPresenter.cpp +++ b/project2/ut/testPresenter.cpp @@ -1,6 +1,6 @@ #include "testPresenter.h" -#include "misc.h" -#include <boost/filesystem/operations.hpp> +#include <buffer.h> +#include <filesystem> #include <boost/test/test_tools.hpp> #include <fstream> #include <boost/format.hpp> @@ -115,10 +115,10 @@ namespace std { } bool - operator==(const PresenterData & left, const boost::filesystem::path & rightPath) + operator==(const PresenterData & left, const std::filesystem::path & rightPath) { PresenterData right; - BOOST_REQUIRE(boost::filesystem::exists(rightPath)); + BOOST_REQUIRE(std::filesystem::exists(rightPath)); fstream strm(rightPath.string()); strm >> right; return (left == right); |
