diff options
author | Eduardo M. Fleury <eduardo.fleury@openbossa.org> | 2009-09-18 15:39:47 (GMT) |
---|---|---|
committer | Jan-Arve Sæther <jan-arve.saether@nokia.com> | 2009-09-25 10:49:24 (GMT) |
commit | 029519af1ac37cfbe839390f151567284a3deab2 (patch) | |
tree | b9e840587027c8e0b73e0ee07d359d492d4f2474 /tests/auto/qgraphicsanchorlayout | |
parent | 38d7c46843e8a1c267d019c9e8d9f60286a49106 (diff) | |
download | Qt-029519af1ac37cfbe839390f151567284a3deab2.zip Qt-029519af1ac37cfbe839390f151567284a3deab2.tar.gz Qt-029519af1ac37cfbe839390f151567284a3deab2.tar.bz2 |
QGraphicsAnchorLayout: Enable boundary feasibility test
This test would trigger random Q_ASSERT failures but should
work fine after the previous commit.
Signed-off-by: Eduardo M. Fleury <eduardo.fleury@openbossa.org>
Reviewed-by: Jesus Sanchez-Palencia <jesus.palencia@openbossa.org>
Diffstat (limited to 'tests/auto/qgraphicsanchorlayout')
-rw-r--r-- | tests/auto/qgraphicsanchorlayout/tst_qgraphicsanchorlayout.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/auto/qgraphicsanchorlayout/tst_qgraphicsanchorlayout.cpp b/tests/auto/qgraphicsanchorlayout/tst_qgraphicsanchorlayout.cpp index c24cce9..2fee98d 100644 --- a/tests/auto/qgraphicsanchorlayout/tst_qgraphicsanchorlayout.cpp +++ b/tests/auto/qgraphicsanchorlayout/tst_qgraphicsanchorlayout.cpp @@ -1316,10 +1316,8 @@ void tst_QGraphicsAnchorLayout::conflicts() a->setMinimumSize(QSizeF(29,10)); QCOMPARE(l->hasConflicts(), false); - // It will currently fail if we uncomment this: - //QEXPECT_FAIL("", "The constraints are just within their bounds in order to be feasible", Continue); - //a->setMinimumSize(QSizeF(30,10)); - //QCOMPARE(l->hasConflicts(), false); + a->setMinimumSize(QSizeF(30,10)); + QCOMPARE(l->hasConflicts(), false); delete p; } |