diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-11-30 01:08:48 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-11-30 01:08:48 (GMT) |
commit | 067d63d03556d361b13f5d9fb9d41b78294fc04c (patch) | |
tree | 5e289b1c24c03b550222d4a26d03bc2b2c1d9b68 /tests/auto/declarative | |
parent | 312604c85b1e6a6fc6de505bac86848936f81edd (diff) | |
download | Qt-067d63d03556d361b13f5d9fb9d41b78294fc04c.zip Qt-067d63d03556d361b13f5d9fb9d41b78294fc04c.tar.gz Qt-067d63d03556d361b13f5d9fb9d41b78294fc04c.tar.bz2 |
Remove expect-fails from passing tests
Diffstat (limited to 'tests/auto/declarative')
-rw-r--r-- | tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp index 8658217..14755f32 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp +++ b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp @@ -745,11 +745,9 @@ void tst_qdeclarativeecmascript::constantsOverrideBindings() QVERIFY(object != 0); QCOMPARE(object->property("c1").toInt(), 0); - QEXPECT_FAIL("", "QTBUG-13719", Continue); QCOMPARE(object->property("c3").toInt(), 10); object->setProperty("c1", QVariant(9)); QCOMPARE(object->property("c1").toInt(), 9); - QEXPECT_FAIL("", "QTBUG-13719", Continue); QCOMPARE(object->property("c3").toInt(), 10); } } |