Skip to content

Commit 6583429

Browse files
committed
Fix errors in dart2js/source_map_pub_build_validity_test
BUG= [email protected] Review URL: https://codereview.chromium.org//1292423006 .
1 parent d3d7de8 commit 6583429

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/compiler/dart2js/source_map_pub_build_validity_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import 'source_map_validator_helper.dart';
1111

1212
void main() {
1313
asyncTest(() async {
14-
Directory tmpDir = createTempDir();
14+
Directory tmpDir = await createTempDir();
1515
try {
1616
Directory sunflowerDir = new Directory.fromUri(
1717
Platform.script.resolve('../../../third_party/sunflower'));
@@ -42,5 +42,5 @@ void main() {
4242
} finally {
4343
tmpDir.deleteSync(recursive: true);
4444
}
45-
}));
45+
});
4646
}

0 commit comments

Comments
 (0)