commit | 4dfc20498baab77e2aac3f417514e45a50ad76e4 | [log] [tgz] |
---|---|---|
author | Nate Bosch <nbosch@google.com> | Fri Nov 06 12:53:58 2020 -0800 |
committer | Nate Bosch <nbosch@google.com> | Fri Nov 06 12:53:58 2020 -0800 |
tree | cde77ffb186a2c7df925d16f47afc7f232ce4f26 | |
parent | c328942c71928c2afb8346dbab63ac4245c8b226 [diff] |
Fix a missed static error
diff --git a/test/selectors/level1_lib.dart b/test/selectors/level1_lib.dart index 2e2babb..65f1468 100644 --- a/test/selectors/level1_lib.dart +++ b/test/selectors/level1_lib.dart
@@ -96,7 +96,7 @@ void verifyStaticList(String type, dynamic root) { List pre; List post; - int preLength; + late int preLength; runTest(() { pre = root.querySelectorAll('div') as List;