| Index: pkg/dev_compiler/test/worker/worker_test.dart
|
| diff --git a/pkg/dev_compiler/test/worker/worker_test.dart b/pkg/dev_compiler/test/worker/worker_test.dart
|
| index 3e017fc753fffb6b4a3ba65109224b186ff164bc..a5e3c1ba38612b9afe0a1583e3deb08caa785fa5 100644
|
| --- a/pkg/dev_compiler/test/worker/worker_test.dart
|
| +++ b/pkg/dev_compiler/test/worker/worker_test.dart
|
| @@ -241,10 +241,12 @@ main() {
|
| helloJS.path,
|
| helloDart.path,
|
| ]);
|
| - expect(result.exitCode, 65);
|
| - expect(result.stdout, contains("conflict"));
|
| - expect(result.stdout, contains('${toUri(greetingDart.path)}'));
|
| - expect(helloJS.existsSync(), isFalse);
|
| + // TODO(vsm): Re-enable when we turn this check back on.
|
| + expect(result.exitCode, 0);
|
| + // expect(result.exitCode, 65);
|
| + // expect(result.stdout, contains("conflict"));
|
| + // expect(result.stdout, contains('${toUri(greetingDart.path)}'));
|
| + // expect(helloJS.existsSync(), isFalse);
|
| });
|
| });
|
|
|
|
|