test(media): fix UHD label expectations

Assert exact display labels for resolution-only media versions so the test matches displayLabel output without codec/container fields.
This commit is contained in:
Bryce Kehoe
2026-05-01 02:27:05 +01:00
parent a605db31f9
commit 5568266c99
+1 -1
View File
@@ -118,7 +118,7 @@ void main() {
for (final resolution in ['8k', '8K']) {
expect(displayLabel(resolution), startsWith('8K '));
}
expect(displayLabel('sd'), startsWith('sd '));
expect(displayLabel('sd'), startsWith('SD '));
});
});
}