| Index: packages/csslib/test/var_test.dart
|
| diff --git a/packages/csslib/test/var_test.dart b/packages/csslib/test/var_test.dart
|
| index 3c53169b190e2e1983f2370b655a3fc5e9221621..39e7c458100246a0be7a379315953ae136d3f378 100644
|
| --- a/packages/csslib/test/var_test.dart
|
| +++ b/packages/csslib/test/var_test.dart
|
| @@ -748,15 +748,13 @@ var-color-foreground: #00f;
|
| }
|
|
|
| void polyfill() {
|
| - compilePolyfillAndValidate(
|
| - r'''
|
| + compilePolyfillAndValidate(r'''
|
| @color-background: red;
|
| @color-foreground: blue;
|
| .test {
|
| background-color: @color-background;
|
| color: @color-foreground;
|
| -}''',
|
| - r'''
|
| +}''', r'''
|
| .test {
|
| background-color: #f00;
|
| color: #00f;
|
| @@ -764,8 +762,7 @@ void polyfill() {
|
| }
|
|
|
| void testIndirects() {
|
| - compilePolyfillAndValidate(
|
| - '''
|
| + compilePolyfillAndValidate('''
|
| :root {
|
| var-redef: #0f0;
|
|
|
| @@ -782,8 +779,7 @@ void testIndirects() {
|
| }
|
| .test-1 {
|
| color: @redef;
|
| -}''',
|
| - r'''
|
| +}''', r'''
|
| :root {
|
| }
|
| .test {
|
|
|