diff options
author | Markus Goetz <Markus.Goetz@nokia.com> | 2010-03-04 14:07:30 (GMT) |
---|---|---|
committer | Markus Goetz <Markus.Goetz@nokia.com> | 2010-03-04 14:07:30 (GMT) |
commit | d998a761e35bb53f29477e3956421de38c9cf641 (patch) | |
tree | ab956849d65b2f9eeaf1cedefc87a7222c5f87e9 | |
parent | f68597ee9f63d3a7c5254062b752e8a91b816919 (diff) | |
download | Qt-d998a761e35bb53f29477e3956421de38c9cf641.zip Qt-d998a761e35bb53f29477e3956421de38c9cf641.tar.gz Qt-d998a761e35bb53f29477e3956421de38c9cf641.tar.bz2 |
tst_qhostinfo: Mixed up descriptions for test case data
-rw-r--r-- | tests/auto/qhostinfo/tst_qhostinfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qhostinfo/tst_qhostinfo.cpp b/tests/auto/qhostinfo/tst_qhostinfo.cpp index cbadcf5..ae4ffde 100644 --- a/tests/auto/qhostinfo/tst_qhostinfo.cpp +++ b/tests/auto/qhostinfo/tst_qhostinfo.cpp @@ -213,8 +213,8 @@ void tst_QHostInfo::initTestCase() // run each testcase with and without test enabled QTest::addColumn<bool>("cache"); - QTest::newRow("WithCache") << false; - QTest::newRow("WithoutCache") << true; + QTest::newRow("WithCache") << true; + QTest::newRow("WithoutCache") << false; } void tst_QHostInfo::init() |