summaryrefslogtreecommitdiffstats
path: root/documentapi/src/tests/messages/error_codes_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'documentapi/src/tests/messages/error_codes_test.cpp')
-rw-r--r--documentapi/src/tests/messages/error_codes_test.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/documentapi/src/tests/messages/error_codes_test.cpp b/documentapi/src/tests/messages/error_codes_test.cpp
index 1714fb70a04..e9ad68f441e 100644
--- a/documentapi/src/tests/messages/error_codes_test.cpp
+++ b/documentapi/src/tests/messages/error_codes_test.cpp
@@ -16,6 +16,7 @@ class ErrorCodesTest : public vespalib::TestApp {
int Main() override;
void error_codes_match_java_definitions();
NamedErrorCodes all_document_protocol_error_codes();
+ std::string path_prefixed(const std::string& file_name) const;
};
TEST_APPHOOK(ErrorCodesTest);
@@ -94,12 +95,13 @@ std::string to_sorted_key_value_string(const NamedErrorCodes& codes) {
return os.str();
}
-std::string path_prefixed(const std::string& file_name) {
- return "../../../test/crosslanguagefiles/" + file_name;
-}
-
} // anon ns
+std::string
+ErrorCodesTest::path_prefixed(const std::string& file_name) const {
+ return GetSourceDirectory() + "../../../test/crosslanguagefiles/" + file_name;
+}
+
void
ErrorCodesTest::error_codes_match_java_definitions()
{