diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-04-09 03:59:42 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-04-09 04:03:38 (GMT) |
commit | efc80769f3274d31e06308717d06a70a4249cced (patch) | |
tree | b1cb9036ee98a6e6c257ed242effccc16c7348b3 /tests/auto/declarative/qdeclarativedom | |
parent | 430c50648c78e1e8e3b2747779069fe2a0f14ed9 (diff) | |
download | Qt-efc80769f3274d31e06308717d06a70a4249cced.zip Qt-efc80769f3274d31e06308717d06a70a4249cced.tar.gz Qt-efc80769f3274d31e06308717d06a70a4249cced.tar.bz2 |
Replace "var" with "variant" in tests
Diffstat (limited to 'tests/auto/declarative/qdeclarativedom')
-rw-r--r-- | tests/auto/declarative/qdeclarativedom/tst_qdeclarativedom.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/declarative/qdeclarativedom/tst_qdeclarativedom.cpp b/tests/auto/declarative/qdeclarativedom/tst_qdeclarativedom.cpp index 1cbe2ac..d391941 100644 --- a/tests/auto/declarative/qdeclarativedom/tst_qdeclarativedom.cpp +++ b/tests/auto/declarative/qdeclarativedom/tst_qdeclarativedom.cpp @@ -450,7 +450,7 @@ void tst_qdeclarativedom::loadDynamicProperty() " property url f\n" " property color g\n" " property date h\n" - " property var i\n" + " property variant i\n" " property QtObject j\n" "}"; @@ -483,8 +483,8 @@ void tst_qdeclarativedom::loadDynamicProperty() DP_TEST(5, f, QVariant::Url, 128, 14, "url"); DP_TEST(6, g, QVariant::Color, 147, 16, "color"); DP_TEST(7, h, QVariant::DateTime, 168, 15, "date"); - DP_TEST(8, i, qMetaTypeId<QVariant>(), 188, 14, "var"); - DP_TEST(9, j, -1, 207, 19, "QtObject"); + DP_TEST(8, i, qMetaTypeId<QVariant>(), 188, 18, "variant"); + DP_TEST(9, j, -1, 211, 19, "QtObject"); } { |