summaryrefslogtreecommitdiffstats
path: root/filedistribution/src/tests/rpc/mockfileprovider.h
diff options
context:
space:
mode:
Diffstat (limited to 'filedistribution/src/tests/rpc/mockfileprovider.h')
-rw-r--r--filedistribution/src/tests/rpc/mockfileprovider.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/filedistribution/src/tests/rpc/mockfileprovider.h b/filedistribution/src/tests/rpc/mockfileprovider.h
index 745acc7196c..230cd0d0382 100644
--- a/filedistribution/src/tests/rpc/mockfileprovider.h
+++ b/filedistribution/src/tests/rpc/mockfileprovider.h
@@ -14,11 +14,11 @@ public:
boost::barrier _queueForeverBarrier;
- boost::optional<boost::filesystem::path> getPath(const std::string& fileReference) {
+ boost::optional<Path> getPath(const std::string& fileReference) {
if (fileReference == "dd") {
- return boost::filesystem::path("direct/result/path");
+ return Path("direct/result/path");
} else {
- return boost::optional<boost::filesystem::path>();
+ return boost::optional<Path>();
}
}