tst_QCborValue: remove duplicate data row from tests
The addCommonCborData() helper had two identical rows named simple255. It only needs one. Change-Id: Ie934c31f373069788c3ef774fde8956b54814e67 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
parent
2192d6a62e
commit
cc204f96c9
@ -1897,7 +1897,6 @@ static void addCommonCborData()
|
||||
|
||||
QTest::newRow("simple0") << QCborValue(QCborValue::SimpleType) << raw("\xe0") << noxfrm;
|
||||
QTest::newRow("simple1") << QCborValue(QCborSimpleType(1)) << raw("\xe1") << noxfrm;
|
||||
QTest::newRow("simple255") << QCborValue(QCborSimpleType(255)) << raw("\xf8\xff") << noxfrm;
|
||||
QTest::newRow("Undefined") << QCborValue() << raw("\xf7") << noxfrm;
|
||||
QTest::newRow("Null") << QCborValue(nullptr) << raw("\xf6") << noxfrm;
|
||||
QTest::newRow("True") << QCborValue(true) << raw("\xf5") << noxfrm;
|
||||
|
Loading…
Reference in New Issue
Block a user