diff options
author | Kent Hansen <khansen@trolltech.com> | 2009-08-06 11:21:18 (GMT) |
---|---|---|
committer | Kent Hansen <khansen@trolltech.com> | 2009-08-06 11:21:18 (GMT) |
commit | be03a2e9d79e8fa4440f5c6b2760e8b37ff5fa8a (patch) | |
tree | 4531f461351e778bcd9b92a298bb76fc8b74e993 /tests/auto/qscriptengine/tst_qscriptengine.cpp | |
parent | e8043818e92c275884f1a29ed740f8f82b0bc084 (diff) | |
download | Qt-be03a2e9d79e8fa4440f5c6b2760e8b37ff5fa8a.zip Qt-be03a2e9d79e8fa4440f5c6b2760e8b37ff5fa8a.tar.gz Qt-be03a2e9d79e8fa4440f5c6b2760e8b37ff5fa8a.tar.bz2 |
finish implementation of QVariant.prototype.toString()
Behave like the old back-end.
Diffstat (limited to 'tests/auto/qscriptengine/tst_qscriptengine.cpp')
-rw-r--r-- | tests/auto/qscriptengine/tst_qscriptengine.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/auto/qscriptengine/tst_qscriptengine.cpp b/tests/auto/qscriptengine/tst_qscriptengine.cpp index fca0983..896a860 100644 --- a/tests/auto/qscriptengine/tst_qscriptengine.cpp +++ b/tests/auto/qscriptengine/tst_qscriptengine.cpp @@ -444,7 +444,6 @@ void tst_QScriptEngine::newVariant() QScriptValue value = object.property("valueOf").call(object); QVERIFY(value.isObject()); QVERIFY(value.strictlyEquals(object)); - QEXPECT_FAIL("", "QVariant.prototype.toString is not correctly implemented", Continue); QCOMPARE(object.toString(), QString::fromLatin1("QVariant(QPoint)")); } } |