From bc8312845bd1e30b849855bc15c8fce351f719ae Mon Sep 17 00:00:00 2001 From: Eric Seidel Date: Wed, 26 Apr 2023 21:49:46 -0400 Subject: [PATCH] chore: remove mention of TRUSTED_TESTERS.md (#383) --- .../lib/src/commands/account/subscribe_account_command.dart | 2 +- .../src/commands/account/subscribe_account_command_test.dart | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/shorebird_cli/lib/src/commands/account/subscribe_account_command.dart b/packages/shorebird_cli/lib/src/commands/account/subscribe_account_command.dart index c06b2394..cc562098 100644 --- a/packages/shorebird_cli/lib/src/commands/account/subscribe_account_command.dart +++ b/packages/shorebird_cli/lib/src/commands/account/subscribe_account_command.dart @@ -31,7 +31,7 @@ patches to your apps. The subscription costs \$20 USD per month per user and is billed through Stripe. -Visit ${styleUnderlined.wrap(lightCyan.wrap('https://github.com/shorebirdtech/shorebird/blob/main/TRUSTED_TESTERS.md'))} for more details.'''; +Visit ${styleUnderlined.wrap(lightCyan.wrap('https://shorebird.dev'))} for more details.'''; @override Future run() async { diff --git a/packages/shorebird_cli/test/src/commands/account/subscribe_account_command_test.dart b/packages/shorebird_cli/test/src/commands/account/subscribe_account_command_test.dart index bd06080b..f1efe33f 100644 --- a/packages/shorebird_cli/test/src/commands/account/subscribe_account_command_test.dart +++ b/packages/shorebird_cli/test/src/commands/account/subscribe_account_command_test.dart @@ -64,10 +64,10 @@ void main() { expect(subscribeAccountCommand.description, isNotEmpty); }); - test('summary has price and link to trusted testers doc', () { + test('summary has price and link to shorebird.dev', () { expect( subscribeAccountCommand.summary, - stringContainsInOrder([r'$20', 'TRUSTED_TESTERS.md']), + stringContainsInOrder([r'$20', 'shorebird.dev']), ); });