Skip to content

Commit

Permalink
test cleanup (#4185)
Browse files Browse the repository at this point in the history
  • Loading branch information
pq committed Mar 22, 2023
1 parent 8fba507 commit d390f9d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/rules/prefer_final_parameters_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ class PreferFinalParametersTestLanguage300 extends LintRuleTest
await assertNoDiagnostics('''
void f(int p) {
[_, p, _] = [1, 2, 3];
print(p);
}
''');
}
Expand All @@ -67,7 +66,6 @@ void f(int p) {
await assertNoDiagnostics(r'''
void f(int a, int b) {
(a, b) = (1, 2);
print('$a$b');
}
''');
}
Expand Down

0 comments on commit d390f9d

Please sign in to comment.