summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/thread/qthreadpool/tst_qthreadpool.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/thread/qthreadpool/tst_qthreadpool.cpp')
-rw-r--r--tests/auto/corelib/thread/qthreadpool/tst_qthreadpool.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/tests/auto/corelib/thread/qthreadpool/tst_qthreadpool.cpp b/tests/auto/corelib/thread/qthreadpool/tst_qthreadpool.cpp
index 1dd0410f41..aa4d163fc4 100644
--- a/tests/auto/corelib/thread/qthreadpool/tst_qthreadpool.cpp
+++ b/tests/auto/corelib/thread/qthreadpool/tst_qthreadpool.cpp
@@ -367,17 +367,17 @@ void tst_QThreadPool::setMaxThreadCount_data()
{
QTest::addColumn<int>("limit");
- QTest::newRow("") << 1;
- QTest::newRow("") << -1;
- QTest::newRow("") << 2;
- QTest::newRow("") << -2;
- QTest::newRow("") << 4;
- QTest::newRow("") << -4;
- QTest::newRow("") << 0;
- QTest::newRow("") << 12345;
- QTest::newRow("") << -6789;
- QTest::newRow("") << 42;
- QTest::newRow("") << -666;
+ QTest::newRow("1") << 1;
+ QTest::newRow("-1") << -1;
+ QTest::newRow("2") << 2;
+ QTest::newRow("-2") << -2;
+ QTest::newRow("4") << 4;
+ QTest::newRow("-4") << -4;
+ QTest::newRow("0") << 0;
+ QTest::newRow("12345") << 12345;
+ QTest::newRow("-6789") << -6789;
+ QTest::newRow("42") << 42;
+ QTest::newRow("-666") << -666;
}
void tst_QThreadPool::setMaxThreadCount()