diff options
Diffstat (limited to 'tests/client')
-rw-r--r-- | tests/client/modeltest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/client/modeltest.cpp b/tests/client/modeltest.cpp index b1f2090..9f6ee76 100644 --- a/tests/client/modeltest.cpp +++ b/tests/client/modeltest.cpp @@ -185,12 +185,12 @@ private Q_SLOTS: // Int64 v = extra["int64"]; - QCOMPARE(v.typeName(), "long"); + QCOMPARE(v.type(), QVariant::LongLong); QCOMPARE(v.value<long>(), (long) -42); // UInt64 v = extra["uint64"]; - QCOMPARE(v.typeName(), "ulong"); + QCOMPARE(v.type(), QVariant::ULongLong); QCOMPARE(v.value<ulong>(), (ulong) 42); // Double |