From 1b1d25ca4ad900b8695e7eca4fd74e658af82ad4 Mon Sep 17 00:00:00 2001 From: OutdatedGuy Date: Sat, 21 Sep 2024 23:08:28 +0530 Subject: [PATCH] fix: tests fails for the newly generated list --- test/main_test.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/main_test.dart b/test/main_test.dart index c86f1c8234..a2fb25848f 100644 --- a/test/main_test.dart +++ b/test/main_test.dart @@ -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', () {