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()); |
} |