Skip to content

Commit ba90f7f

Browse files
committed
dart format
1 parent a29d1c6 commit ba90f7f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pkg/web_css/test/file_use_test.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import 'package:path/path.dart' as p;
88
import 'package:test/test.dart';
99

1010
void main() {
11-
test('scss files in lib/ are exactly those referenced by style.scss ', () async {
11+
test('scss files in lib/ are exactly those referenced by style.scss ',
12+
() async {
1213
final references = (await File('lib/style.scss').readAsLines())
1314
.where((l) => l.startsWith(r'@use'))
1415
.map((l) =>
@@ -20,7 +21,8 @@ void main() {
2021

2122
final files = await Directory('lib')
2223
.list(recursive: true)
23-
.whereType<File>().where((f) => f.path.endsWith('.scss'))
24+
.whereType<File>()
25+
.where((f) => f.path.endsWith('.scss'))
2426
.map((f) => p.relative(f.path, from: 'lib'))
2527
.map((n) => n.substring(0, n.length - 5)) // without the .scss extension
2628
.toSet();

0 commit comments

Comments
 (0)