We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 648a4ee commit a02ce3fCopy full SHA for a02ce3f
1 file changed
test/helpers.cpp
@@ -43,7 +43,7 @@ ScopedFile::ScopedFile(std::string name, const std::string &content, std::string
43
#endif
44
}
45
46
- std::ofstream of(mFullPath);
+ std::ofstream of(Path::getAbsoluteFilePath(mFullPath));
47
if (!of.is_open())
48
throw std::runtime_error("ScopedFile(" + mFullPath + ") - could not open file");
49
of << content;
0 commit comments