| Index: tests/compiler/dart2js/deprecated_features_test.dart
|
| diff --git a/tests/compiler/dart2js/deprecated_features_test.dart b/tests/compiler/dart2js/deprecated_features_test.dart
|
| index ab679c343ea1480fa3a0ece03a0ba363143b3724..58d8f07c92f79cf7400bc37e6c1e1c7e1e3793e0 100644
|
| --- a/tests/compiler/dart2js/deprecated_features_test.dart
|
| +++ b/tests/compiler/dart2js/deprecated_features_test.dart
|
| @@ -54,11 +54,10 @@ main() {
|
| // "message" is the expected message as a [String]. This is a
|
| // short-term solution and should eventually changed to include
|
| // a symbolic reference to a MessageKind.
|
| - "0<#library('test');>::${deprecatedMessage('# tags')}\n"
|
| - "19<part 'part.dart';>::${deprecatedMessage('missing part-of tag')}\n"
|
| + "15<part 'part.dart';>::${deprecatedMessage('missing part-of tag')}\n"
|
| "0<>:/part.dart:info: Note: This file has no part-of tag, but it is being"
|
| " used as a part.\n"
|
| - "57<()>::${deprecatedMessage('getter parameters')}\n",
|
| + "53<()>::${deprecatedMessage('getter parameters')}\n",
|
| messages.toString());
|
| }
|
|
|
| @@ -70,7 +69,7 @@ deprecatedMessage(feature) {
|
|
|
| const Map<String, String> TEST_SOURCE =
|
| const <String, String>{ '': """
|
| -#library('test');
|
| +library test;
|
|
|
| part 'part.dart';
|
|
|
|
|