Skip to content

Commit

Permalink
[CQ] remove trailing whitespace from unnecessary_underscores_test s…
Browse files Browse the repository at this point in the history
…ource

This *should* be breaking the bots (see: #59867)

Change-Id: I3855954e28e442f189ae9b716a432fc1e1d409fb
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/403741
Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
Commit-Queue: Phil Quitslund <pquitslund@google.com>
  • Loading branch information
pq authored and Commit Queue committed Jan 8, 2025
1 parent c1ce43f commit b9de4ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/linter/test/rules/unnecessary_underscores_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ void f(int _, int __) {}
await assertNoDiagnostics(r'''
// @dart = 3.6
void f(int _, int __) {}
void f(int _, int __) {}
''');
}

test_function_parameter_used() async {
await assertNoDiagnostics(r'''
void f(int _, int __) {
print(__);
}
}
''');
}

Expand Down

0 comments on commit b9de4ae

Please sign in to comment.