From 5a835f891616e5871200992f31375a3d71612002 Mon Sep 17 00:00:00 2001 From: Miguel Beltran Date: Thu, 23 May 2024 09:01:29 +0200 Subject: [PATCH] fix(device_info_plus): fix integration_test iOS --- .../example/integration_test/device_info_plus_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/device_info_plus/device_info_plus/example/integration_test/device_info_plus_test.dart b/packages/device_info_plus/device_info_plus/example/integration_test/device_info_plus_test.dart index 162389aed0..b3855ab1f8 100644 --- a/packages/device_info_plus/device_info_plus/example/integration_test/device_info_plus_test.dart +++ b/packages/device_info_plus/device_info_plus/example/integration_test/device_info_plus_test.dart @@ -67,7 +67,7 @@ void main() { testWidgets('Can get non-null iOS utsname fields', (WidgetTester tester) async { - expect(iosInfo.utsname.machine, 'iPhone14,7'); + expect(iosInfo.utsname.machine, 'iPhone15,4'); expect(iosInfo.utsname.nodename, isNotNull); expect(iosInfo.utsname.release, isNotNull); expect(iosInfo.utsname.sysname, isNotNull);