Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Unified Diff: pkg/front_end/test/fasta/compile_platform_test.dart

Issue 3008813002: Add a missing import to compile_platform_test.dart. (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/test/fasta/compile_platform_test.dart
diff --git a/pkg/front_end/test/fasta/compile_platform_test.dart b/pkg/front_end/test/fasta/compile_platform_test.dart
index 3d94d7cfdc3cc788c98ec5ac5fb8eeb5d4c6093b..562986c0151a7bdae6c3c3344f50e46827e91c32 100644
--- a/pkg/front_end/test/fasta/compile_platform_test.dart
+++ b/pkg/front_end/test/fasta/compile_platform_test.dart
@@ -4,6 +4,7 @@
library fasta.test.compile_platform_test;
+import 'dart:async';
import 'dart:io';
import 'package:async_helper/async_helper.dart';
@@ -14,7 +15,7 @@ import '../../tool/_fasta/compile_platform.dart' show compilePlatform;
main(List<String> arguments) async {
await asyncTest(() async {
- await withTemporyDirectory("compile_platform_test_", (Uri tmp) async {
+ await withTemporaryDirectory("compile_platform_test_", (Uri tmp) async {
String patchedSdk = Uri.base
.resolveUri(new Uri.file(Platform.resolvedExecutable))
.resolve("patched_sdk")
@@ -51,7 +52,7 @@ main(List<String> arguments) async {
});
}
-withTemporyDirectory(String prefix, Future f(Uri tmp)) async {
+withTemporaryDirectory(String prefix, Future f(Uri tmp)) async {
Directory tmp = await Directory.systemTemp.createTemp(prefix);
try {
await f(tmp.uri);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698