| Index: test/compiler_test.dart
|
| diff --git a/test/compiler_test.dart b/test/compiler_test.dart
|
| index a7cdf4a4725c5332ccb2d0b64ef193b17ebfc45e..5d5dcf509d675ff217bdd51f112bc285ea9f28f9 100644
|
| --- a/test/compiler_test.dart
|
| +++ b/test/compiler_test.dart
|
| @@ -584,8 +584,7 @@ p:nth-child(3n-3) { }
|
| div:nth-child(2n) { color : red; }
|
| ''';
|
|
|
| - var stylesheet =
|
| - parseCss(input, errors: errors, opts: ['--no-colors', 'memory']);
|
| + var stylesheet = parseCss(input, errors: errors, opts: simpleOptions);
|
|
|
| expect(stylesheet != null, true);
|
| expect(errors.isEmpty, true, reason: errors.toString());
|
| @@ -655,8 +654,7 @@ void testHost() {
|
| '*:hover { font-weight: bold; }'
|
| ':nth-child(odd) { color: blue; }'
|
| '}';
|
| - var stylesheet =
|
| - parseCss(input, errors: errors, opts: ['--no-colors', 'memory']);
|
| + var stylesheet = parseCss(input, errors: errors, opts: simpleOptions);
|
|
|
| expect(stylesheet != null, true);
|
| expect(errors.isEmpty, true, reason: errors.toString());
|
|
|