Skip to content

Commit

Permalink
fix: tests fails for the newly generated list (#576)
Browse files Browse the repository at this point in the history
  • Loading branch information
OutdatedGuy authored Sep 21, 2024
1 parent a1b9a5b commit 79077ee
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/main_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ import 'package:test/test.dart';
// Unit tests for main.dart
void main() {
test('iOS icon list is correct size', () {
expect(ios.iosIcons.length, 21);
expect(ios.iosIcons.length, 16);
});

test('iOS legacy icon list is correct size', () {
expect(ios.legacyIosIcons.length, 21);
});

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

0 comments on commit 79077ee

Please sign in to comment.