Skip to content

Commit 918297c

Browse files
committed
Update test
1 parent 3d5c077 commit 918297c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/devtools_shared/test/deeplink/universal_link_settings_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ void main() {
2929
}
3030
''';
3131
final settings = UniversalLinkSettings.fromJson(json);
32-
expect(settings.bundleIdentifier, isNull);
32+
expect(settings.bundleIdentifier, isEmpty);
3333
expect(settings.teamIdentifier, 'TEAMID');
3434
expect(settings.associatedDomains, ['applinks:example.com']);
3535
});
@@ -43,7 +43,7 @@ void main() {
4343
''';
4444
final settings = UniversalLinkSettings.fromJson(json);
4545
expect(settings.bundleIdentifier, 'com.example.app');
46-
expect(settings.teamIdentifier, isNull);
46+
expect(settings.teamIdentifier, isEmpty);
4747
expect(settings.associatedDomains, ['applinks:example.com']);
4848
});
4949
});

0 commit comments

Comments
 (0)