Skip to content

Commit 3d06bf0

Browse files
authored
fix(device_info_plus): fix the error in the e2e test. (#3382)
1 parent 40f9c42 commit 3d06bf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/device_info_plus/device_info_plus/example/integration_test/device_info_plus_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ void main() {
6767

6868
testWidgets('Can get non-null iOS utsname fields',
6969
(WidgetTester tester) async {
70-
expect(iosInfo.utsname.machine, 'iPhone15,4');
70+
expect(iosInfo.utsname.machine, isNotNull);
7171
expect(iosInfo.utsname.nodename, isNotNull);
7272
expect(iosInfo.utsname.release, isNotNull);
7373
expect(iosInfo.utsname.sysname, isNotNull);

0 commit comments

Comments
 (0)