summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2022-10-05 13:28:45 +0200
committerEdward Welbourne <edward.welbourne@qt.io>2022-10-11 11:24:51 +0200
commit35ff45640783aa3a8b9061bb2be08fe7a6612724 (patch)
treed2877cf704ff440c8cff418df0b97712cb87a6f0 /tests
parent3af2747c46decc1dd5abd7d82270854a839b92ef (diff)
tst_QString::compare(): rename a test tag to be unique
There were two data8 rows; and no data9, so that was easy to fix. Change-Id: I8191de142e1a3be57bf1ad97e63d5780f2859fea Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/corelib/text/qstring/tst_qstring.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/corelib/text/qstring/tst_qstring.cpp b/tests/auto/corelib/text/qstring/tst_qstring.cpp
index a1e8342cd1..242ab53011 100644
--- a/tests/auto/corelib/text/qstring/tst_qstring.cpp
+++ b/tests/auto/corelib/text/qstring/tst_qstring.cpp
@@ -6600,7 +6600,7 @@ void tst_QString::compare_data()
QString lower;
lower += QChar(QChar::highSurrogate(0x10428));
lower += QChar(QChar::lowSurrogate(0x10428));
- QTest::newRow("data8") << upper << lower << -1 << 0;
+ QTest::newRow("data9") << upper << lower << -1 << 0;
// embedded nulls
QByteArray onenull("", 1);