Skip to content

Commit

Permalink
Merge pull request #561 from salesforcecli/sh/correct-query-command
Browse files Browse the repository at this point in the history
Sh/correct query command
  • Loading branch information
shetzel authored Jan 22, 2024
2 parents 7dafdb1 + e618dcc commit 513560e
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_create_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ ID (starts with 08c) of the package version creation request you want to display

...

To see all errors, run: %s data:soql:query -t -q "SELECT Message FROM Package2VersionCreateRequestError WHERE ParentRequest.Id='%s'" -o %s
To see all errors, run: %s data query -t -q "SELECT Message FROM Package2VersionCreateRequestError WHERE ParentRequest.Id='%s'" -o %s
2 changes: 1 addition & 1 deletion test/commands/package/packageVersionCreateReport.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ describe('package:version:create:report - tests', () => {
'(11) SampleDataController: Invalid type: Schema.Property__c\n(12) SampleDataController: Invalid type: Schema.Broker__c'
);
expect(warnStub.secondCall.args[0]).to.deep.equal(
`...${os.EOL}${os.EOL}To see all errors, run: sf data:soql:query -t -q "SELECT Message FROM Package2VersionCreateRequestError WHERE ParentRequest.Id='08c3i000000fyoVAAQ'" -o test@hub.org`
`...${os.EOL}${os.EOL}To see all errors, run: sf data query -t -q "SELECT Message FROM Package2VersionCreateRequestError WHERE ParentRequest.Id='08c3i000000fyoVAAQ'" -o test@hub.org`
);
});
});
Expand Down

0 comments on commit 513560e

Please sign in to comment.