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

Unified Diff: tests/isolate/browser/ports_compilation_browser_test.dart

Issue 23368003: Cleanup of isolate.status (first step) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
Index: tests/isolate/browser/ports_compilation_browser_test.dart
diff --git a/tests/isolate/ports_compilation_browser_test.dart b/tests/isolate/browser/ports_compilation_browser_test.dart
similarity index 91%
rename from tests/isolate/ports_compilation_browser_test.dart
rename to tests/isolate/browser/ports_compilation_browser_test.dart
index 5ab16abe92ecca39621ac115c09043da374bfb41..5eb76d78b4857f93c8b162f2da8d73e3af3f55d0 100644
--- a/tests/isolate/ports_compilation_browser_test.dart
+++ b/tests/isolate/browser/ports_compilation_browser_test.dart
@@ -8,19 +8,19 @@
library ports_compilation;
import 'dart:html';
import 'dart:isolate';
-import '../../pkg/unittest/lib/unittest.dart';
-import '../../pkg/unittest/lib/html_config.dart';
+import 'package:unittest/unittest.dart';
+import 'package:unittest/html_config.dart';
void foo() {
// Create a "SendPortSync" object and access one of its members.
SendPortSync s_port;
s_port.callSync;
-
+
// Create a "ReceivePortSync" object (with the constructor) and
// access one of its members.
var r_port = new ReceivePortSync();
r_port.receive;
-
+
// Call getComputedStyle() from the HTML library.
query("").getComputedStyle("");
}

Powered by Google App Engine
This is Rietveld 408576698