Skip to content

Commit

Permalink
convert unnecessary lates to finals
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekpacia committed Sep 13, 2023
1 parent 86b9b12 commit d0665c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/patrol/example/integration_test/open_app_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import 'common.dart';

void main() {
patrol('open maps', ($) async {
late String mapsId;
final String mapsId;
if (Platform.isIOS) {
mapsId = 'com.apple.Maps';
} else if (Platform.isAndroid) {
Expand All @@ -30,7 +30,7 @@ void main() {
});

patrol('open browser', ($) async {
late String browserId;
final String browserId;
if (Platform.isIOS) {
browserId = 'com.apple.mobilesafari';
} else if (Platform.isAndroid) {
Expand Down
2 changes: 1 addition & 1 deletion packages/patrol/example/integration_test/swipe_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import 'dart:io' show Platform;
import 'common.dart';

void main() {
late String appId;
final String appId;
if (Platform.isIOS) {
appId = 'com.apple.Preferences';
} else if (Platform.isAndroid) {
Expand Down

0 comments on commit d0665c2

Please sign in to comment.