| Index: tests/compiler/dart2js/scanner_test.dart
|
| diff --git a/tests/compiler/dart2js/scanner_test.dart b/tests/compiler/dart2js/scanner_test.dart
|
| index 8dd1aed7f92f942f19258e43f15b103eb6230993..9cd8ba1aa65d3c3a98de6e6d20a016c33a9dae9e 100644
|
| --- a/tests/compiler/dart2js/scanner_test.dart
|
| +++ b/tests/compiler/dart2js/scanner_test.dart
|
| @@ -184,7 +184,7 @@ main() {
|
| // Regression test for issue 1761.
|
| // "#!"
|
| token = scan([0x23, 0x21]);
|
| - Expect.equals(token.info, TokenType.SCRIPT_TAG); // Treated as a comment.
|
| + Expect.equals(token.type, TokenType.SCRIPT_TAG); // Treated as a comment.
|
|
|
| // Regression test for issue 1761.
|
| // "#! Hello, World!"
|
| @@ -206,5 +206,5 @@ main() {
|
| 0x64,
|
| 0x21
|
| ]);
|
| - Expect.equals(token.info, TokenType.SCRIPT_TAG); // Treated as a comment.
|
| + Expect.equals(token.type, TokenType.SCRIPT_TAG); // Treated as a comment.
|
| }
|
|
|