Skip to content

Commit 79077ee

Browse files
authored
fix: tests fails for the newly generated list (#576)
1 parent a1b9a5b commit 79077ee

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/main_test.dart

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ import 'package:test/test.dart';
1212
// Unit tests for main.dart
1313
void main() {
1414
test('iOS icon list is correct size', () {
15-
expect(ios.iosIcons.length, 21);
15+
expect(ios.iosIcons.length, 16);
16+
});
17+
18+
test('iOS legacy icon list is correct size', () {
19+
expect(ios.legacyIosIcons.length, 21);
1620
});
1721

1822
test('Android icon list is correct size', () {

0 commit comments

Comments
 (0)