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