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

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: Siggi's comments 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
« no previous file with comments | « utils/tests/css/src/ExpressionTest.dart ('k') | utils/tests/template/README.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..4f0b499ee657ab2f76b2dd350c6c9069e96e30ab 100644
--- a/utils/tests/css/src/SelectorLiteralTest.dart
+++ b/utils/tests/css/src/SelectorLiteralTest.dart
@@ -3,14 +3,13 @@
// BSD-style license that can be found in the LICENSE file.
#import("../../../css/css.dart");
-#import('../../../../frog/lang.dart', prefix:'lang');
class SelectorLiteralTest {
static final String ERROR = 'CompilerException: <buffer>:';
static testMain() {
initCssWorld();
- lang.options.useColors = false;
+ options.useColors = false;
testSimpleClassSelectorSuccesses();
testSimpleClassSelectorFailures();
@@ -90,7 +89,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());
}
« no previous file with comments | « utils/tests/css/src/ExpressionTest.dart ('k') | utils/tests/template/README.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698