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

Unified Diff: pkg/unittest/lib/html_individual_config.dart

Issue 11648035: Revert "Convert unittest to use "package:" imports." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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 | pkg/unittest/test/instance_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/lib/html_individual_config.dart
diff --git a/pkg/unittest/lib/html_individual_config.dart b/pkg/unittest/lib/html_individual_config.dart
index fca58bfc1c8f72b8ac461db6c6334060c376d4c8..662f5775d2c5156c80ce82d4f66fcc46e91c5227 100644
--- a/pkg/unittest/lib/html_individual_config.dart
+++ b/pkg/unittest/lib/html_individual_config.dart
@@ -12,15 +12,15 @@
* start of your set sequence. Important constraint: your group descriptions
* MUST NOT contain spaces.
*/
-library unittest;
+#library('unittest');
-import 'dart:html';
-import 'unittest.dart' as unittest;
-import 'html_config.dart' as htmlconfig;
+#import('unittest.dart', prefix: 'unittest');
+#import('html_config.dart', prefix: 'htmlconfig');
+#import('dart:html');
class HtmlIndividualConfiguration extends htmlconfig.HtmlConfiguration {
- String _noSuchTest = '';
+ String _noSuchTest = '';
HtmlIndividualConfiguration(isLayoutTest): super(isLayoutTest);
void onStart() {
« no previous file with comments | « no previous file | pkg/unittest/test/instance_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698