From 781bd075a64dcde893680c1dd1d5a82e2bf02791 Mon Sep 17 00:00:00 2001 From: Edward Welbourne Date: Wed, 5 Oct 2022 13:31:39 +0200 Subject: [PATCH] tst_QStringApiSymmetry: eliminate one duplicate of a mid_data() row MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There were two copies of the same line in mid_data(), leading to duplicated data row tags. Change-Id: Ia21e855ff781b13fe18c932cff48cb0aabd12750 Reviewed-by: MÃ¥rten Nordheim --- .../corelib/text/qstringapisymmetry/tst_qstringapisymmetry.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/auto/corelib/text/qstringapisymmetry/tst_qstringapisymmetry.cpp b/tests/auto/corelib/text/qstringapisymmetry/tst_qstringapisymmetry.cpp index deda275c8a..4c8e45f17e 100644 --- a/tests/auto/corelib/text/qstringapisymmetry/tst_qstringapisymmetry.cpp +++ b/tests/auto/corelib/text/qstringapisymmetry/tst_qstringapisymmetry.cpp @@ -2019,7 +2019,6 @@ void tst_QStringApiSymmetry::mid_data() ROW(abc, 0, -1, abc, abc); ROW(abc, 0, 5, abc, abc); ROW(abc, -1, 1, abc, null); - ROW(abc, -1, 2, abc, a); ROW(abc, -1, 4, abc, abc); ROW(abc, 1, -1, bc, bc); ROW(abc, 1, 1, bc, b);