Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/TestCsvParser.cpp')
-rw-r--r--tests/TestCsvParser.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/TestCsvParser.cpp b/tests/TestCsvParser.cpp
index f31e30414..758c31ecc 100644
--- a/tests/TestCsvParser.cpp
+++ b/tests/TestCsvParser.cpp
@@ -30,8 +30,9 @@ void TestCsvParser::initTestCase()
void TestCsvParser::init()
{
file.reset(new QTemporaryFile());
- if (not file->open())
+ if (not file->open()) {
QFAIL("Cannot open file!");
+ }
parser->setBackslashSyntax(false);
parser->setComment('#');
parser->setFieldSeparator(',');