Skip to content

Commit

Permalink
Fix format and dart fix results (#3953)
Browse files Browse the repository at this point in the history
This fixes a failure in flutter/tests when running `dart fix apply` + `dart format . --line-length=120`
Found in flutter/tests#413
  • Loading branch information
Piinks authored Oct 15, 2024
1 parent 38a95ad commit bb18d44
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dashboard/test/logic/task_grid_filter_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,9 @@ void main() {
expect(linuxAndroidBothTrueFilter.matchesTask(QualifiedTask.fromTask(Task()..builderName = 'Linux_android')), true);
expect(linuxAndroidBothTrueFilter.matchesTask(QualifiedTask.fromTask(Task()..builderName = 'Linux_mokey')), true);
expect(
linuxAndroidBothTrueFilter.matchesTask(QualifiedTask.fromTask(Task()..builderName = 'Linux_pixel_7pro')), true);
linuxAndroidBothTrueFilter.matchesTask(QualifiedTask.fromTask(Task()..builderName = 'Linux_pixel_7pro')),
true,
);
expect(androidLinuxFilter.matchesTask(QualifiedTask.fromTask(Task()..builderName = 'Windows_android')), true);
expect(androidLinuxFilter.matchesTask(QualifiedTask.fromTask(Task()..builderName = 'Windows_mokey')), true);
expect(androidLinuxFilter.matchesTask(QualifiedTask.fromTask(Task()..builderName = 'Windows_pixel_7pro')), true);
Expand Down

0 comments on commit bb18d44

Please sign in to comment.