Index: lib/testing/content_shell_test.dart |
diff --git a/lib/testing/content_shell_test.dart b/lib/testing/content_shell_test.dart |
index 6f56cd34f7dfbe0e48abaa0c5b31c66cc6bc21c9..92b0350528917bc0eee7c5cd47f33ada2f08a320 100644 |
--- a/lib/testing/content_shell_test.dart |
+++ b/lib/testing/content_shell_test.dart |
@@ -8,7 +8,6 @@ |
library polymer.testing.end2end; |
import 'dart:io'; |
-import 'dart:math' show min; |
import 'package:args/args.dart'; |
import 'package:path/path.dart' as path; |
import 'package:unittest/unittest.dart'; |
@@ -57,8 +56,7 @@ void _testHelper(_TestOptions options) { |
for (var filePath in paths) { |
var filename = path.basename(filePath); |
test('compile $filename', () { |
- var testArgs = ['-o', options.outDir, |
- '--basedir', options.baseDir, '--no-css'] |
+ var testArgs = ['-o', options.outDir, '--basedir', options.baseDir] |
..addAll(options.compilerArgs) |
..add(filePath); |
expect(dwc.run(testArgs, printTime: false).then((res) { |