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

Unified Diff: test/nested_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/mixin_test.dart ('k') | test/testing.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/nested_test.dart
diff --git a/test/nested_test.dart b/test/nested_test.dart
index 2a46da7f95cea4c181660dc0c65c7c19f8a4dfc9..db25679d121155b467b1bb1f42584c287b0d0398 100644
--- a/test/nested_test.dart
+++ b/test/nested_test.dart
@@ -7,11 +7,9 @@ library nested_test;
import 'package:unittest/unittest.dart';
import 'testing.dart';
-List optionsCss = ['--no-colors', 'memory'];
-
compileAndValidate(String input, String generated) {
var errors = [];
- var stylesheet = compileCss(input, errors: errors, opts: optionsCss);
+ var stylesheet = compileCss(input, errors: errors, opts: simpleOptions);
expect(stylesheet != null, true);
expect(errors.isEmpty, true, reason: errors.toString());
expect(prettyPrint(stylesheet), generated);
« no previous file with comments | « test/mixin_test.dart ('k') | test/testing.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698