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

Unified Diff: utils/tests/css/src/SelectorLiteralTest.dart

Issue 9695048: Template parser (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix GIT mixup - ugh Created 8 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
Index: utils/tests/css/src/SelectorLiteralTest.dart
diff --git a/utils/tests/css/src/SelectorLiteralTest.dart b/utils/tests/css/src/SelectorLiteralTest.dart
index ca2b87cfc2caeba772b65dcdcd459b4bb136e6e8..da82cddf67a8b6b7fb6bf4a5f2ae792267d2fe5e 100644
--- a/utils/tests/css/src/SelectorLiteralTest.dart
+++ b/utils/tests/css/src/SelectorLiteralTest.dart
@@ -10,7 +10,7 @@ class SelectorLiteralTest {
static testMain() {
initCssWorld();
- lang.options.useColors = false;
+ options.useColors = false;
testSimpleClassSelectorSuccesses();
testSimpleClassSelectorFailures();
@@ -90,7 +90,7 @@ class SelectorLiteralTest {
cssParseAndValidate('${css}', cssWorld);
Expect.fail("${css} should not succeed.");
} catch (final e) {
- Expect.equals("${ERROR}1:11: fatal: expected }, but found double(.1)\n" +
+ Expect.equals("${ERROR}1:11: fatal: parsing error expected }\n" +
"${css}\n ^^", e.toString());
}

Powered by Google App Engine
This is Rietveld 408576698