summaryrefslogtreecommitdiffstats
path: root/tests/auto/qscriptengine
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qscriptengine')
-rw-r--r--tests/auto/qscriptengine/tst_qscriptengine.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/auto/qscriptengine/tst_qscriptengine.cpp b/tests/auto/qscriptengine/tst_qscriptengine.cpp
index 83874ec..e9eeca2 100644
--- a/tests/auto/qscriptengine/tst_qscriptengine.cpp
+++ b/tests/auto/qscriptengine/tst_qscriptengine.cpp
@@ -157,7 +157,6 @@ void tst_QScriptEngine::currentContext()
QVERIFY(globalCtx->parentContext() == 0);
QCOMPARE(globalCtx->engine(), &eng);
QCOMPARE(globalCtx->argumentCount(), 0);
- QEXPECT_FAIL("", "", Continue);
QCOMPARE(globalCtx->backtrace().size(), 1);
QVERIFY(!globalCtx->isCalledAsConstructor());
QVERIFY(!globalCtx->callee().isValid());
@@ -178,7 +177,6 @@ void tst_QScriptEngine::pushPopContext()
QVERIFY(!ctx->callee().isValid());
QVERIFY(ctx->thisObject().strictlyEquals(eng.globalObject()));
QCOMPARE(ctx->argumentCount(), 0);
- QEXPECT_FAIL("", "Backtrace not implemented", Continue);
QCOMPARE(ctx->backtrace().size(), 2);
QCOMPARE(ctx->engine(), &eng);
QCOMPARE(ctx->state(), QScriptContext::NormalState);