diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-04-15 07:48:56 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-04-15 07:50:44 (GMT) |
commit | 2c9ff8dc79b69b310a568f7457838753abbf2178 (patch) | |
tree | 974ac90d252e9b748b5e2296faecb00acd4967e8 /tests/auto/declarative/qdeclarativeecmascript | |
parent | 0b3ade40922ecb06e3f67be96973322f8440bef9 (diff) | |
download | Qt-2c9ff8dc79b69b310a568f7457838753abbf2178.zip Qt-2c9ff8dc79b69b310a568f7457838753abbf2178.tar.gz Qt-2c9ff8dc79b69b310a568f7457838753abbf2178.tar.bz2 |
Support valuetypes as method return values
QTBUG-9818
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript')
-rw-r--r-- | tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp index 35b4d99..098ac36 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp +++ b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp @@ -1382,7 +1382,6 @@ void tst_qdeclarativeecmascript::callQtInvokables() o.reset(); { QScriptValue ret = engine->evaluate("object.method_NoArgs_QPointF()"); - QVERIFY(ret.isVariant()); QCOMPARE(ret.toVariant(), QVariant(QPointF(123, 4.5))); QCOMPARE(o.error(), false); QCOMPARE(o.invoked(), 3); |