Skip to content

Commit

Permalink
docs: update per Juliet
Browse files Browse the repository at this point in the history
  • Loading branch information
WillieRuemmele committed Oct 23, 2024
1 parent de5c345 commit 8347cca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion messages/package_version_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ Successfully deleted the package version with ID: %s

# humanSuccessUndelete

Successfully undeleted the package version. %s
Successfully undeleted package version %s.
2 changes: 1 addition & 1 deletion test/commands/package/version.delete.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ describe('package:version:delete', () => {
command.project = SfProject.getInstance();
const results: PackageSaveResult = await command.run();
expect(uxSuccessStub.calledOnce).to.be.true;
expect(uxSuccessStub.args[0][0]).to.equal('Successfully undeleted the package version. testId');
expect(uxSuccessStub.args[0][0]).to.equal('Successfully undeleted package version testId.');
expect(results.id).to.equal('testId');
});
});

0 comments on commit 8347cca

Please sign in to comment.