Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Unified Diff: test/runner/configuration/tags_test.dart

Issue 1782473005: Add support for configuration presets. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Code review changes Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/runner/configuration/presets_test.dart ('k') | test/runner/runner_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « test/runner/configuration/presets_test.dart ('k') | test/runner/runner_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698