summaryrefslogtreecommitdiff
path: root/tests/auto/qscriptcontext/tst_qscriptcontext.cpp
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2011-10-19 14:29:03 +1000
committerQt by Nokia <qt-info@nokia.com>2011-10-21 09:49:26 +0200
commit62c9050dbe9313dfe090839b4ececf6608d49143 (patch)
treeaa868d1447edc45f2e6eb4e288c3690bed995ab7 /tests/auto/qscriptcontext/tst_qscriptcontext.cpp
parentdd760b017a561b4c5a005c9b2f4e737debeb65a3 (diff)
downloadqtscript-62c9050dbe9313dfe090839b4ececf6608d49143.tar.gz
Remove SkipMode parameter from QSKIP.
The SkipMode parameter has been removed from the API in qtbase, so it must be in all calls to QSKIP. Task-number: QTBUG-21851, QTBUG-21652 Change-Id: I8579b648437eaa9d4c81deb7ed581d88af11d5b5 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests/auto/qscriptcontext/tst_qscriptcontext.cpp')
-rw-r--r--tests/auto/qscriptcontext/tst_qscriptcontext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qscriptcontext/tst_qscriptcontext.cpp b/tests/auto/qscriptcontext/tst_qscriptcontext.cpp
index 14c204e..6f14965 100644
--- a/tests/auto/qscriptcontext/tst_qscriptcontext.cpp
+++ b/tests/auto/qscriptcontext/tst_qscriptcontext.cpp
@@ -353,7 +353,7 @@ void tst_QScriptContext::thisObject()
void tst_QScriptContext::returnValue()
{
- QSKIP("Internal function not implemented in JSC-based back-end", SkipAll);
+ QSKIP("Internal function not implemented in JSC-based back-end");
QScriptEngine eng;
eng.evaluate("123");
QCOMPARE(eng.currentContext()->returnValue().toNumber(), 123.0);