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

Unified Diff: pkg/polymer/test/compiler_test.dart

Issue 23039018: fix polymer tests on windows (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
« no previous file with comments | « no previous file | pkg/polymer/test/css_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/polymer/test/compiler_test.dart
diff --git a/pkg/polymer/test/compiler_test.dart b/pkg/polymer/test/compiler_test.dart
index 57315587ea71fdd142b64537b547b90dae0081ec..d5d47ba19a0945fb5d32fb1a24f287d597574e1c 100644
--- a/pkg/polymer/test/compiler_test.dart
+++ b/pkg/polymer/test/compiler_test.dart
@@ -6,9 +6,10 @@
library compiler_test;
import 'package:logging/logging.dart' show Level;
+import 'package:path/path.dart' as path;
+import 'package:polymer/src/messages.dart';
import 'package:unittest/compact_vm_config.dart';
import 'package:unittest/unittest.dart';
-import 'package:polymer/src/messages.dart';
import 'testing.dart';
@@ -41,15 +42,15 @@ main() {
var outputs = compiler.output.map((o) => o.path);
expect(outputs, equals([
- 'out/foo.html.dart',
- 'out/foo.html.dart.map',
- 'out/bar.html.dart',
- 'out/bar.html.dart.map',
- 'out/index.html.dart',
- 'out/index.html.dart.map',
- 'out/index.html_bootstrap.dart',
- 'out/index.html',
- ]));
+ 'foo.html.dart',
+ 'foo.html.dart.map',
+ 'bar.html.dart',
+ 'bar.html.dart.map',
+ 'index.html.dart',
+ 'index.html.dart.map',
+ 'index.html_bootstrap.dart',
+ 'index.html',
+ ].map((p) => path.join('out', p))));
}));
});
« no previous file with comments | « no previous file | pkg/polymer/test/css_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698