diff --git a/test/lish/force_publishes_if_there_are_warnings_test.dart b/test/lish/force_publishes_if_there_are_warnings_test.dart index c6e19ca0e2da4423f0ef7c9151abf52de86bc71d..092855d0039f29019741e74d0d1cae16061d6dbc 100644 --- a/test/lish/force_publishes_if_there_are_warnings_test.dart +++ b/test/lish/force_publishes_if_there_are_warnings_test.dart @@ -20,7 +20,7 @@ main() { integration('--force publishes if there are warnings', () { var pkg = packageMap("test_pkg", "1.0.0"); - pkg["author"] = "Nathan Weizenbaum"; + pkg["author"] = "Natalie Weizenbaum"; d.dir(appPath, [d.pubspec(pkg)]).create(); var server = new ScheduledServer(); @@ -39,7 +39,7 @@ main() { pub.shouldExit(exit_codes.SUCCESS); pub.stderr.expect(consumeThrough('Suggestions:')); pub.stderr.expect(emitsLines( - '* Author "Nathan Weizenbaum" in pubspec.yaml should have an email ' + '* Author "Natalie Weizenbaum" in pubspec.yaml should have an email ' 'address\n' ' (e.g. "name <email>").')); pub.stdout.expect(consumeThrough('Package test_pkg 1.0.0 uploaded!')); diff --git a/test/lish/package_validation_has_a_warning_and_continues_test.dart b/test/lish/package_validation_has_a_warning_and_continues_test.dart index 13af22badf6b534a6236726d07de2e6b356823bc..89d84e7f231b6a098c88be13e84fdadc0590d57c 100644 --- a/test/lish/package_validation_has_a_warning_and_continues_test.dart +++ b/test/lish/package_validation_has_a_warning_and_continues_test.dart @@ -20,7 +20,7 @@ main() { integration('package validation has a warning and continues', () { var pkg = packageMap("test_pkg", "1.0.0"); - pkg["author"] = "Nathan Weizenbaum"; + pkg["author"] = "Natalie Weizenbaum"; d.dir(appPath, [d.pubspec(pkg)]).create(); var server = new ScheduledServer(); diff --git a/test/lish/package_validation_has_a_warning_and_is_canceled_test.dart b/test/lish/package_validation_has_a_warning_and_is_canceled_test.dart index 65ed4a652948b0371538fa790a8a1553aee4efbf..314c528e9755e07acea5f084b2e26272081878b8 100644 --- a/test/lish/package_validation_has_a_warning_and_is_canceled_test.dart +++ b/test/lish/package_validation_has_a_warning_and_is_canceled_test.dart @@ -16,7 +16,7 @@ main() { integration('package validation has a warning and is canceled', () { var pkg = packageMap("test_pkg", "1.0.0"); - pkg["author"] = "Nathan Weizenbaum"; + pkg["author"] = "Natalie Weizenbaum"; d.dir(appPath, [d.pubspec(pkg)]).create(); var server = new ScheduledServer(); diff --git a/test/lish/preview_package_validation_has_a_warning_test.dart b/test/lish/preview_package_validation_has_a_warning_test.dart index c7925f466389e215e368e463830c68e588de85eb..cbc94fb31c58e063c8f0eac8bd689ebae2db232f 100644 --- a/test/lish/preview_package_validation_has_a_warning_test.dart +++ b/test/lish/preview_package_validation_has_a_warning_test.dart @@ -16,7 +16,7 @@ main() { integration('preview package validation has a warning', () { var pkg = packageMap("test_pkg", "1.0.0"); - pkg["author"] = "Nathan Weizenbaum"; + pkg["author"] = "Natalie Weizenbaum"; d.dir(appPath, [d.pubspec(pkg)]).create(); var server = new ScheduledServer(); @@ -25,7 +25,7 @@ main() { pub.shouldExit(exit_codes.SUCCESS); pub.stderr.expect(consumeThrough('Suggestions:')); pub.stderr.expect(emitsLines( - '* Author "Nathan Weizenbaum" in pubspec.yaml should have an email ' + '* Author "Natalie Weizenbaum" in pubspec.yaml should have an email ' 'address\n' ' (e.g. "name <email>").\n' '\n' diff --git a/test/lish/preview_package_validation_has_no_warnings_test.dart b/test/lish/preview_package_validation_has_no_warnings_test.dart index 37dac6b70cfe01dec3180f3aba41e97796edcc0e..66f092ebd4e7a5f19de1078797e0c43924c94cfc 100644 --- a/test/lish/preview_package_validation_has_no_warnings_test.dart +++ b/test/lish/preview_package_validation_has_no_warnings_test.dart @@ -16,7 +16,7 @@ main() { integration('preview package validation has no warnings', () { var pkg = packageMap("test_pkg", "1.0.0"); - pkg["author"] = "Nathan Weizenbaum <nweiz@google.com>"; + pkg["author"] = "Natalie Weizenbaum <nweiz@google.com>"; d.dir(appPath, [d.pubspec(pkg)]).create(); var server = new ScheduledServer(); diff --git a/test/test_pub.dart b/test/test_pub.dart index 5b499e340aec084550c6962a498bbc94bc8c5720..54e30dec86c62441281e98397e234ab09608f8fc 100644 --- a/test/test_pub.dart +++ b/test/test_pub.dart @@ -876,7 +876,7 @@ Map packageMap(String name, String version, [Map dependencies]) { var package = { "name": name, "version": version, - "author": "Nathan Weizenbaum <nweiz@google.com>", + "author": "Natalie Weizenbaum <nweiz@google.com>", "homepage": "http://pub.dartlang.org", "description": "A package, I guess." }; diff --git a/test/validator/pubspec_field_test.dart b/test/validator/pubspec_field_test.dart index 9c951a887eaee58284033296826a1ed455c0b900..4f0f33ec9501b67528b2416692ed35d1c243a81c 100644 --- a/test/validator/pubspec_field_test.dart +++ b/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();