Browse Source

Fix Windows specific namespace in TestHelper class

Patrick-Christopher Mattulat 2 years ago
parent
commit
182a84cfe3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/classes/TestHelper.cpp

+ 1 - 1
test/classes/TestHelper.cpp

@@ -107,7 +107,7 @@ char ls::std::test::TestHelper::_getFilePathSeparator()
 #endif
 
 #ifdef _WIN32
-static ::std::string _getWorkingDirectoryWindows()
+::std::string ls::std::test::TestHelper::_getWorkingDirectoryWindows()
 {
   ::std::string workingDirectory{};
   TCHAR buffer[MAX_PATH];