diff options
author | Ladislav Zezula <ladislav.zezula@avast.com> | 2023-01-16 21:22:25 +0100 |
---|---|---|
committer | Ladislav Zezula <ladislav.zezula@avast.com> | 2023-01-16 21:22:25 +0100 |
commit | cdceb0c5275d0ea9b1bbaadf5d6ee29dbb80a2fb (patch) | |
tree | feae06c32f1f6aef7f1bdacbbda7b1609108bcb2 /test/StormTest.cpp | |
parent | 6f89c7ba8530c37f1f5a6048406cb18c40e5a458 (diff) |
Fixed regression tests
Diffstat (limited to 'test/StormTest.cpp')
-rw-r--r-- | test/StormTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/StormTest.cpp b/test/StormTest.cpp index 97a3663..0123353 100644 --- a/test/StormTest.cpp +++ b/test/StormTest.cpp @@ -1333,14 +1333,14 @@ static bool CheckIfFileIsPresent(TLogHelper * pLogger, HANDLE hMpq, LPCSTR szFil if(SFileOpenFileEx(hMpq, szFileName, 0, &hFile))
{
if(bShouldExist == false)
- pLogger->PrintMessage("The file %s is present, but it should not be", szFileName);
+ pLogger->PrintMessage("The file \"%s\" is present, but it should not be", szFileName);
SFileCloseFile(hFile);
return true;
}
else
{
if(bShouldExist)
- pLogger->PrintMessage("The file %s is not present, but it should be", szFileName);
+ pLogger->PrintMessage("The file \"%s\" is not present, but it should be", szFileName);
return false;
}
}
|