Skip to content

Commit

Permalink
PR Feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
joe-yeager committed Nov 22, 2024
1 parent 1eb31d6 commit b57bd41
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion commands/__tests__/accounts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ describe('commands/accounts', () => {
});

it.each(subcommands)('should attach the %s subcommand', (name, module) => {
console.log(name, module);
accountsCommand.builder(yargs);
expect(yargs.command).toHaveBeenCalledWith(module);
});
Expand Down
2 changes: 1 addition & 1 deletion commands/accounts/remove.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const { loadAndValidateOptions } = require('../../lib/validation');

const i18nKey = 'commands.accounts.subcommands.remove';

exports.command = 'remove <account>';
exports.command = 'remove [account]';
exports.describe = i18n(`${i18nKey}.describe`);

exports.handler = async options => {
Expand Down

0 comments on commit b57bd41

Please sign in to comment.