diff options
author | Ariya Hidayat <ariya.hidayat@nokia.com> | 2009-07-15 15:09:51 (GMT) |
---|---|---|
committer | Ariya Hidayat <ariya.hidayat@nokia.com> | 2009-07-17 18:11:33 (GMT) |
commit | 86d2d5d3a2568982468d19bfae3b19bfb6b42457 (patch) | |
tree | 82d59ead9617a387c73981199e8e3876a45ac7e9 /tests/auto/qscriptvalue | |
parent | 7f04bc3a46d4dd5203b9776c102b487b283a6282 (diff) | |
download | Qt-86d2d5d3a2568982468d19bfae3b19bfb6b42457.zip Qt-86d2d5d3a2568982468d19bfae3b19bfb6b42457.tar.gz Qt-86d2d5d3a2568982468d19bfae3b19bfb6b42457.tar.bz2 |
Fix the return value of a function call that throws an error.
Diffstat (limited to 'tests/auto/qscriptvalue')
-rw-r--r-- | tests/auto/qscriptvalue/tst_qscriptvalue.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/auto/qscriptvalue/tst_qscriptvalue.cpp b/tests/auto/qscriptvalue/tst_qscriptvalue.cpp index 2eff71a..b0df6fd 100644 --- a/tests/auto/qscriptvalue/tst_qscriptvalue.cpp +++ b/tests/auto/qscriptvalue/tst_qscriptvalue.cpp @@ -2354,10 +2354,8 @@ void tst_QScriptValue::call() { QScriptValue result = fun.call(); - QEXPECT_FAIL("", "Returns null if a function throws an error", Continue); QCOMPARE(result.isError(), true); QCOMPARE(eng.hasUncaughtException(), true); - QEXPECT_FAIL("", "returns null if a function throws an error", Continue); QVERIFY(result.strictlyEquals(eng.uncaughtException())); } } |