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

Unified Diff: test/compiler_test.dart

Issue 1022963002: pkg/csslib: fixes for args (Closed) Base URL: https://github.com/dart-lang/csslib@master
Patch Set: nits Created 5 years, 9 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 | « test/big_1_test.dart ('k') | test/declaration_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
« no previous file with comments | « test/big_1_test.dart ('k') | test/declaration_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698