| Index: test/runner/configuration/tags_test.dart
|
| diff --git a/test/runner/configuration/tags_test.dart b/test/runner/configuration/tags_test.dart
|
| index cddbf761afbb4fe9f4743d16fc16b386c7fc434d..5fd432e907ece927ef5fc93e719e93cc3c23be21 100644
|
| --- a/test/runner/configuration/tags_test.dart
|
| +++ b/test/runner/configuration/tags_test.dart
|
| @@ -158,7 +158,7 @@ void main() {
|
| test.shouldExit(exit_codes.data);
|
| });
|
|
|
| - test("rejects an inavlid tag map", () {
|
| + test("rejects an invalid tag map", () {
|
| d.file("dart_test.yaml", JSON.encode({
|
| "tags": 12
|
| })).create();
|
| @@ -219,7 +219,7 @@ void main() {
|
|
|
| var test = runTest(["test.dart"]);
|
| test.stderr.expect(containsInOrder([
|
| - "Tags must be strings",
|
| + "Tag name must be a string",
|
| "^^"
|
| ]));
|
| test.shouldExit(exit_codes.data);
|
| @@ -232,7 +232,7 @@ void main() {
|
|
|
| var test = runTest(["test.dart"]);
|
| test.stderr.expect(containsInOrder([
|
| - "Invalid tag. Tags must be (optionally hyphenated) Dart identifiers.",
|
| + "Tag name must be an (optionally hyphenated) Dart identifier.",
|
| "^^^^^^^^^"
|
| ]));
|
| test.shouldExit(exit_codes.data);
|
|
|