Skip to content

Commit

Permalink
fix dartfmt caused lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jcollins-g committed Mar 8, 2021
1 parent 1675646 commit af97376
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tool/grind.dart
Original file line number Diff line number Diff line change
Expand Up @@ -759,8 +759,9 @@ $analyzerOptions
..createSync();
var languageTestDir =
Directory(path.context.resolveTildePath(languageTestPath));
if (!languageTestDir.existsSync())
if (!languageTestDir.existsSync()) {
fail('language test dir does not exist: $languageTestDir');
}

for (var entry in languageTestDir.listSync(recursive: true)) {
if (entry is File &&
Expand Down

0 comments on commit af97376

Please sign in to comment.