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

Unified Diff: pkg/scheduled_test/test/scheduled_process_test.dart

Issue 50303006: Use Platform rather than dart:platform in scheduled_test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | « pkg/scheduled_test/test/metatest.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/scheduled_test/test/scheduled_process_test.dart
diff --git a/pkg/scheduled_test/test/scheduled_process_test.dart b/pkg/scheduled_test/test/scheduled_process_test.dart
index 154760d40dadba40c30e887c38b986037bee047b..e09c536824ac868bd66ece8420e6ed90f2c1b482 100644
--- a/pkg/scheduled_test/test/scheduled_process_test.dart
+++ b/pkg/scheduled_test/test/scheduled_process_test.dart
@@ -7,7 +7,6 @@ library scheduled_process_test;
import 'dart:async';
import 'dart:convert';
import 'dart:io';
-import 'dart:platform' as platform;
import 'package:path/path.dart' as path;
import 'package:scheduled_test/scheduled_process.dart';
@@ -390,6 +389,6 @@ ScheduledProcess startDartProcess(String script) {
});
}, 'clean up temp dir');
- return new ScheduledProcess.start(platform.executable,
+ return new ScheduledProcess.start(Platform.executable,
['--checked', dartPath]);
}
« no previous file with comments | « pkg/scheduled_test/test/metatest.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698