aboutsummaryrefslogtreecommitdiff
path: root/tests/client/convertertest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/client/convertertest.cpp')
-rw-r--r--tests/client/convertertest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/client/convertertest.cpp b/tests/client/convertertest.cpp
index ddb6aa2..636c299 100644
--- a/tests/client/convertertest.cpp
+++ b/tests/client/convertertest.cpp
@@ -158,7 +158,7 @@ private Q_SLOTS:
QTest::newRow("double from int") << QVariant::fromValue<int>(1) << "d";
// convert to string
- QTest::newRow("string") << QVariant::fromValue<QString>("FoooBar") << "x";
+ QTest::newRow("string") << QVariant::fromValue<QString>("FoooBar") << "s";
QTest::newRow("string from int") << QVariant::fromValue<int>(1) << "s";
QTest::newRow("string from double") << QVariant::fromValue<double>(1.1) << "s";
@@ -190,7 +190,7 @@ private Q_SLOTS:
QFETCH(QVariant, value);
QFETCH(QString, schema);
- compareWithSchema(value, schema);
+ QVERIFY(compareWithSchema(value, schema));
}
};