tst_QBitArray: remove duplicate data rows
Both countBits() and datastream() had two copies of an all-zeros test with 35 zeros. Removed the second, in each case. Change-Id: I5dec4765236ae870c30828dae0f04b8902a100f0 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
parent
ade68c9949
commit
0448d57c07
@ -125,7 +125,6 @@ void tst_QBitArray::countBits_data()
|
||||
QTest::newRow("11111111111111111111111111111111") << QString("11111111111111111111111111111111") << 32 << 32;
|
||||
QTest::newRow("11111111111111111111111111111111111111111111111111111111")
|
||||
<< QString("11111111111111111111111111111111111111111111111111111111") << 56 << 56;
|
||||
QTest::newRow("00000000000000000000000000000000000") << QString("00000000000000000000000000000000000") << 35 << 0;
|
||||
QTest::newRow("00000000000000000000000000000000") << QString("00000000000000000000000000000000") << 32 << 0;
|
||||
QTest::newRow("00000000000000000000000000000000000000000000000000000000")
|
||||
<< QString("00000000000000000000000000000000000000000000000000000000") << 56 << 0;
|
||||
@ -473,7 +472,6 @@ void tst_QBitArray::datastream_data()
|
||||
QTest::newRow("11111111111111111111111111111111") << QString("11111111111111111111111111111111") << 32 << 32;
|
||||
QTest::newRow("11111111111111111111111111111111111111111111111111111111")
|
||||
<< QString("11111111111111111111111111111111111111111111111111111111") << 56 << 56;
|
||||
QTest::newRow("00000000000000000000000000000000000") << QString("00000000000000000000000000000000000") << 35 << 0;
|
||||
QTest::newRow("00000000000000000000000000000000") << QString("00000000000000000000000000000000") << 32 << 0;
|
||||
QTest::newRow("00000000000000000000000000000000000000000000000000000000")
|
||||
<< QString("00000000000000000000000000000000000000000000000000000000") << 56 << 0;
|
||||
|
Loading…
Reference in New Issue
Block a user