diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-20 17:46:41 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-20 17:46:41 +0100 |
commit | 8755bbe309d2f00c7bc73a6a6304ed8860a9a94d (patch) | |
tree | a364d21db838a5a27eb76a1639ddbdb882b4aedd /test | |
parent | b61de477f91e9f6ec68a7e7b9ab5d4bddc632843 (diff) |
Implemented automatic generation of default search paths
Diffstat (limited to 'test')
-rw-r--r-- | test/plugins/filesystem/FileLocatorTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/plugins/filesystem/FileLocatorTest.cpp b/test/plugins/filesystem/FileLocatorTest.cpp index 473b15e..056d05e 100644 --- a/test/plugins/filesystem/FileLocatorTest.cpp +++ b/test/plugins/filesystem/FileLocatorTest.cpp @@ -18,7 +18,7 @@ #include <gtest/gtest.h> -#include <plugins/boost/FileLocator.hpp> +#include <plugins/filesystem/FileLocator.hpp> #include <boost/filesystem.hpp> @@ -114,7 +114,7 @@ TEST(FileLocator, testLocate) assert_not_located(instance, "FileLocator.hpp", relativeTo); // Add the respective search path. - instance.addSearchPath((start / "src/plugins/boost").generic_string(), + instance.addSearchPath((start / "src/plugins/filesystem").generic_string(), {ResourceType::DOMAIN_DESC}); // Now we should be able to find both. assert_located(instance, "CMakeLists.txt", relativeTo); |