diff options
author | Peter Hartmann <peter.hartmann@nokia.com> | 2009-09-30 15:13:21 (GMT) |
---|---|---|
committer | Peter Hartmann <peter.hartmann@nokia.com> | 2009-09-30 15:37:05 (GMT) |
commit | 12eae101aa19fd7a4c7862188c16134ca51f3fd4 (patch) | |
tree | e65b2e0c531e440ec56124bf0634d29a8ee101dd /tests | |
parent | 27b3784bf84ecd7c760b4d3ec47a657a1f3a0d40 (diff) | |
download | Qt-12eae101aa19fd7a4c7862188c16134ca51f3fd4.zip Qt-12eae101aa19fd7a4c7862188c16134ca51f3fd4.tar.gz Qt-12eae101aa19fd7a4c7862188c16134ca51f3fd4.tar.bz2 |
Revert "Make the test fail, not crash for now. A task is already open to fix it."
This reverts commit 21cfe5bf6550ae359d6bfa937b1308891954e9bb.
The bug is fixed now.
Reviewed-By: Alexis
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qdom/tst_qdom.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/auto/qdom/tst_qdom.cpp b/tests/auto/qdom/tst_qdom.cpp index 6987186..6637202 100644 --- a/tests/auto/qdom/tst_qdom.cpp +++ b/tests/auto/qdom/tst_qdom.cpp @@ -1908,8 +1908,7 @@ void tst_QDom::taskQTBUG4595_dontAssertWhenDocumentSpecifiesUnknownEncoding() co QDomDocument d; QVERIFY(d.setContent(xmlWithUnknownEncoding)); - //QString dontAssert = d.toString(); // this should not assert - QVERIFY2(false, "Line above crashes but we still want to run all tests."); + QString dontAssert = d.toString(); // this should not assert QVERIFY(true); } |