Skip to content

Commit

Permalink
fix: code analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
TesteurManiak committed Aug 17, 2023
1 parent ac063e8 commit 983ce99
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/ressources/mock/data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ const wantedContentMap = <String, String>{
const wantedContentMapFull = <String, String>{
'c_n': matomoContentName,
'c_p': matomoContentPiece,
'c_t': matomoContentTarget
'c_t': matomoContentTarget,
};

// PerformanceInfo
Expand Down
2 changes: 1 addition & 1 deletion test/src/dispatch_settings_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ void main() {
// will filter out recent
DispatchSettings.whereUserId(_uid2),
// will filter out old
DispatchSettings.whereNotOlderThanADay
DispatchSettings.whereNotOlderThanADay,
],
);
final after = [old, recent]..retainWhere(chained);
Expand Down
2 changes: 1 addition & 1 deletion test/src/persistent_queue_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const _nonEmptyJsonElementCount = 2;
const _action = <String, String>{'action3': 'value3'};
const _actions = [
_action,
<String, String>{'action4': 'value4'}
<String, String>{'action4': 'value4'},
];

void main() {
Expand Down

0 comments on commit 983ce99

Please sign in to comment.