diff options
author | Kent Hansen <khansen@trolltech.com> | 2009-07-09 08:51:09 (GMT) |
---|---|---|
committer | Kent Hansen <khansen@trolltech.com> | 2009-07-09 08:51:09 (GMT) |
commit | bbe31f2e8842e032139fde0f58740cd181eeacd9 (patch) | |
tree | 166ff282b9b16d18e89c46da1a00f5866684f049 /tests/auto/qscriptcontext | |
parent | eb40a2f0757cc236576a4adba394761409adc501 (diff) | |
download | Qt-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.cpp | 2 |
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); |