summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick3d/quick3dbuffer/tst_quick3dbuffer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick3d/quick3dbuffer/tst_quick3dbuffer.cpp')
-rw-r--r--tests/auto/quick3d/quick3dbuffer/tst_quick3dbuffer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/quick3d/quick3dbuffer/tst_quick3dbuffer.cpp b/tests/auto/quick3d/quick3dbuffer/tst_quick3dbuffer.cpp
index fccf5f13f..d59040c80 100644
--- a/tests/auto/quick3d/quick3dbuffer/tst_quick3dbuffer.cpp
+++ b/tests/auto/quick3d/quick3dbuffer/tst_quick3dbuffer.cpp
@@ -59,7 +59,7 @@ private Q_SLOTS:
QVariant data = buf.readBinaryFile(QUrl::fromLocalFile(QLatin1String("this_should_not_exist.bin")));
// THEN
- QCOMPARE(data.userType(), static_cast<int>(QVariant::ByteArray));
+ QCOMPARE(data.userType(), static_cast<int>(QMetaType::QByteArray));
QVERIFY(data.value<QByteArray>().isEmpty());
}
@@ -80,7 +80,7 @@ private Q_SLOTS:
QVariant data = buf.readBinaryFile(path);
// THEN
- QCOMPARE(data.userType(), static_cast<int>(QVariant::ByteArray));
+ QCOMPARE(data.userType(), static_cast<int>(QMetaType::QByteArray));
const QByteArray byteArray = data.value<QByteArray>();
QCOMPARE(byteArray.size(), bufferByteSize);
QVERIFY(memcmp(byteArray, dataArray.constData(), bufferByteSize) == 0);