Fix duplicate data tag warning in tst_tumbler.qml

When the count property was added it wasn't added to the tag.

Amends 4dc0c0d4fa.

Pick-to: 6.2 6.5
Change-Id: Ice7714621cafde1a185b22a6968120eb5194d7f0
Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
This commit is contained in:
Mitch Curtis 2023-04-17 13:52:10 +08:00
parent 33422388dc
commit da863fad2f
1 changed files with 4 additions and 1 deletions

View File

@ -464,7 +464,10 @@ TestCase {
];
for (var i = 0; i < data.length; ++i) {
var row = data[i];
row.tag = "delegate" + row.index + " offset=" + row.offset + " expectedDisplacement=" + row.expectedDisplacement;
row.tag = "count=" + row.count
+ " delegate" + row.index
+ " offset=" + row.offset
+ " expectedDisplacement=" + row.expectedDisplacement;
}
return data;
}