Skip to content

Commit

Permalink
fix(device_info_plus): fix the error in the e2e test. (#3382)
Browse files Browse the repository at this point in the history
  • Loading branch information
StanleyCocos authored Dec 7, 2024
1 parent 40f9c42 commit 3d06bf0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void main() {

testWidgets('Can get non-null iOS utsname fields',
(WidgetTester tester) async {
expect(iosInfo.utsname.machine, 'iPhone15,4');
expect(iosInfo.utsname.machine, isNotNull);
expect(iosInfo.utsname.nodename, isNotNull);
expect(iosInfo.utsname.release, isNotNull);
expect(iosInfo.utsname.sysname, isNotNull);
Expand Down

0 comments on commit 3d06bf0

Please sign in to comment.