summaryrefslogtreecommitdiffstats
path: root/tests/auto/qscriptengine/tst_qscriptengine.cpp
diff options
context:
space:
mode:
authorKent Hansen <khansen@trolltech.com>2009-08-06 13:21:18 +0200
committerKent Hansen <khansen@trolltech.com>2009-08-06 13:21:18 +0200
commitbe03a2e9d79e8fa4440f5c6b2760e8b37ff5fa8a (patch)
tree4531f461351e778bcd9b92a298bb76fc8b74e993 /tests/auto/qscriptengine/tst_qscriptengine.cpp
parente8043818e92c275884f1a29ed740f8f82b0bc084 (diff)
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.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/auto/qscriptengine/tst_qscriptengine.cpp b/tests/auto/qscriptengine/tst_qscriptengine.cpp
index fca098346f..896a860261 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)"));
}
}