Index: sdk/lib/_internal/pub/test/validator/pubspec_field_test.dart |
diff --git a/sdk/lib/_internal/pub/test/validator/pubspec_field_test.dart b/sdk/lib/_internal/pub/test/validator/pubspec_field_test.dart |
index 9c951a887eaee58284033296826a1ed455c0b900..4f0f33ec9501b67528b2416692ed35d1c243a81c 100644 |
--- a/sdk/lib/_internal/pub/test/validator/pubspec_field_test.dart |
+++ b/sdk/lib/_internal/pub/test/validator/pubspec_field_test.dart |
@@ -115,7 +115,7 @@ main() { |
integration('has a single author without an email', () { |
var pkg = packageMap("test_pkg", "1.0.0"); |
- pkg["author"] = "Nathan Weizenbaum"; |
+ pkg["author"] = "Natalie Weizenbaum"; |
d.dir(appPath, [d.pubspec(pkg)]).create(); |
expectValidationWarning(pubspecField); |
@@ -126,7 +126,7 @@ main() { |
pkg.remove("author"); |
pkg["authors"] = [ |
"Bob Nystrom <rnystrom@google.com>", |
- "Nathan Weizenbaum", |
+ "Natalie Weizenbaum", |
"John Messerly <jmesserly@google.com>" |
]; |
d.dir(appPath, [d.pubspec(pkg)]).create(); |