From 35ff45640783aa3a8b9061bb2be08fe7a6612724 Mon Sep 17 00:00:00 2001 From: Edward Welbourne Date: Wed, 5 Oct 2022 13:28:45 +0200 Subject: [PATCH] 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 --- tests/auto/corelib/text/qstring/tst_qstring.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);