summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/tools
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2011-11-24 16:09:21 +1000
committerQt by Nokia <qt-info@nokia.com>2011-11-24 10:38:15 +0100
commit170b9a82ba7aa772e9ee7fae267257c23ee99b9e (patch)
treeee43cef5bb92d6abf1e15352e2c85ab03622ca7c /tests/auto/corelib/tools
parent6b22448fa3e27bb50ae8d9ee527ce262752c7874 (diff)
Improve QVector autotest
Ensure that data row names are unique. Change-Id: Ia6cf6e440d631928ae3352d7305c6cf2ee5b2a0c Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests/auto/corelib/tools')
-rw-r--r--tests/auto/corelib/tools/qvector/tst_qvector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/corelib/tools/qvector/tst_qvector.cpp b/tests/auto/corelib/tools/qvector/tst_qvector.cpp
index 490b836f3d..2c1a17108b 100644
--- a/tests/auto/corelib/tools/qvector/tst_qvector.cpp
+++ b/tests/auto/corelib/tools/qvector/tst_qvector.cpp
@@ -881,7 +881,7 @@ void tst_QVector::QTBUG11763_data()
result3 = i - 10;
result4 = i - 20;
}
- QTest::newRow(qPrintable(QString("QTBUG11763:%1").arg(i))) << i << fill_size << j << result1 << result2 << result3 << result4;
+ QTest::newRow(qPrintable(QString("QTBUG11763:%1,%2").arg(i).arg(j))) << i << fill_size << j << result1 << result2 << result3 << result4;
}
}
}