summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/text/qbytearray
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2022-10-04 18:54:50 +0200
committerEdward Welbourne <edward.welbourne@qt.io>2022-10-11 11:21:06 +0200
commite61dc8a83bf56f8498f57c8e8c078ed7ff551192 (patch)
tree2abe5a496258628030f0c38a9f0fed007adb54f3 /tests/auto/corelib/text/qbytearray
parentf71daf857cd3fb6666294bce4ee61363a216d0e4 (diff)
Don't duplicate a column name in tst_QByteArray::movablity_data()
It first added a column, then some rows, then called prependExtended_data(), which expects to be called first in a data function and starts by adding the same column. So put that first and drop the duplicate addition of the column. Change-Id: Ia5cf86f821608e78f0e4872db2b3167ef81cc59e Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> Reviewed-by: Marc Mutz <marc.mutz@qt.io>
Diffstat (limited to 'tests/auto/corelib/text/qbytearray')
-rw-r--r--tests/auto/corelib/text/qbytearray/tst_qbytearray.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/auto/corelib/text/qbytearray/tst_qbytearray.cpp b/tests/auto/corelib/text/qbytearray/tst_qbytearray.cpp
index 9096c6319a..7e2b0e6545 100644
--- a/tests/auto/corelib/text/qbytearray/tst_qbytearray.cpp
+++ b/tests/auto/corelib/text/qbytearray/tst_qbytearray.cpp
@@ -2129,7 +2129,7 @@ void tst_QByteArray::resize()
void tst_QByteArray::movablity_data()
{
- QTest::addColumn<QByteArray>("array");
+ prependExtended_data();
QTest::newRow("0x00000000") << QByteArray("\x00\x00\x00\x00", 4);
QTest::newRow("0x000000ff") << QByteArray("\x00\x00\x00\xff", 4);
@@ -2137,8 +2137,6 @@ void tst_QByteArray::movablity_data()
QTest::newRow("empty") << QByteArray("");
QTest::newRow("null") << QByteArray();
QTest::newRow("sss") << QByteArray(3, 's');
-
- prependExtended_data();
}
void tst_QByteArray::movablity()