aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qjsvalue
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-04-18 12:41:59 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2013-04-19 12:00:55 +0200
commitc54f04e9fc9d8468a04eb483451e292bdf547a98 (patch)
tree13cc8b7929e607e6c8d53870e0d725cdfba3d8a7 /tests/auto/qml/qjsvalue
parent4866005aacda3bba754cfcc97eae9ca5d0f3e15c (diff)
Implement most of QJSEngine against V4
Also do various fixes in other places, so more of the QJS* autotests pass Change-Id: I39662a2ca1441f778595d260860375c5c628bf8e Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'tests/auto/qml/qjsvalue')
-rw-r--r--tests/auto/qml/qjsvalue/tst_qjsvalue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qml/qjsvalue/tst_qjsvalue.cpp b/tests/auto/qml/qjsvalue/tst_qjsvalue.cpp
index 49e66c08dd..effa54e38d 100644
--- a/tests/auto/qml/qjsvalue/tst_qjsvalue.cpp
+++ b/tests/auto/qml/qjsvalue/tst_qjsvalue.cpp
@@ -378,7 +378,7 @@ void tst_QJSValue::toString()
"})()");
QVERIFY(!objectObject.isError());
QVERIFY(objectObject.isObject());
- QCOMPARE(objectObject.toString(), QString::fromLatin1("TypeError: Function.prototype.toString is not generic"));
+ QCOMPARE(objectObject.toString(), QString::fromLatin1("TypeError: Type error"));
}
QJSValue inv = QJSValue();