summaryrefslogtreecommitdiffstats
path: root/tests/auto/qscriptcontext
diff options
context:
space:
mode:
authorKent Hansen <khansen@trolltech.com>2009-07-09 08:51:09 (GMT)
committerKent Hansen <khansen@trolltech.com>2009-07-09 08:51:09 (GMT)
commitbbe31f2e8842e032139fde0f58740cd181eeacd9 (patch)
tree166ff282b9b16d18e89c46da1a00f5866684f049 /tests/auto/qscriptcontext
parenteb40a2f0757cc236576a4adba394761409adc501 (diff)
downloadQt-bbe31f2e8842e032139fde0f58740cd181eeacd9.zip
Qt-bbe31f2e8842e032139fde0f58740cd181eeacd9.tar.gz
Qt-bbe31f2e8842e032139fde0f58740cd181eeacd9.tar.bz2
remove two expected failures
They now work.
Diffstat (limited to 'tests/auto/qscriptcontext')
-rw-r--r--tests/auto/qscriptcontext/tst_qscriptcontext.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/auto/qscriptcontext/tst_qscriptcontext.cpp b/tests/auto/qscriptcontext/tst_qscriptcontext.cpp
index 2b46ac8..8a64007 100644
--- a/tests/auto/qscriptcontext/tst_qscriptcontext.cpp
+++ b/tests/auto/qscriptcontext/tst_qscriptcontext.cpp
@@ -200,10 +200,8 @@ void tst_QScriptContext::arguments()
QCOMPARE(result.isArray(), false);
QVERIFY(result.isObject());
QCOMPARE(result.property("length").toUInt32(), quint32(0));
- QEXPECT_FAIL("", "arguments.length should have SkipInEnumeration flag", Continue);
QCOMPARE(result.propertyFlags("length"), QScriptValue::SkipInEnumeration);
QCOMPARE(result.property("callee").strictlyEquals(fun), true);
- QEXPECT_FAIL("", "arguments.callee should have SkipInEnumeration flag", Continue);
QCOMPARE(result.propertyFlags("callee"), QScriptValue::SkipInEnumeration);
QScriptValue replacedCallee(&eng, 123);
result.setProperty("callee", replacedCallee);