Skip to content

Commit

Permalink
- (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
polina-c authored Jul 5, 2023
1 parent c75b0a7 commit 85bd7fb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ void main() {
for (var c in Channel.values)
c: messages
.where((m) => envelopeByType(m.runtimeType).channel == c)
.toList()
.toList(),
};

setUpAll(() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ final _leaks = Leaks({
code: 1,
type: 'type',
),
]
],
});

void main() {
Expand Down
6 changes: 3 additions & 3 deletions pkgs/leak_tracker_flutter_test/test/_formatting_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ const libName = 'libName';
const _json = <String, dynamic>{
'value': {
'class': {
'library': {'name': libName}
}
}
'library': {'name': libName},
},
},
};

void main() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ class LeakCleaner {
for (LeakType leakType in leaks.byType.keys)
leakType: leaks.byType[leakType]!
.where((LeakReport leak) => _shouldReportLeak(leakType, leak))
.toList()
.toList(),
});
return result;
}
Expand Down

0 comments on commit 85bd7fb

Please sign in to comment.