| 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))));
|
| }));
|
| });
|
|
|
|
|