File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 9898 "plugin" : " @salesforce/plugin-apex"
9999 },
100100 {
101- "alias" : [" force:logic:test:report" ],
102101 "command" : " logic:get:test" ,
103102 "flagAliases" : [
104103 " apiversion" ,
Original file line number Diff line number Diff line change @@ -24,8 +24,6 @@ export default class Test extends SfCommand<RunResult> {
2424 public static readonly summary = messages . getMessage ( 'summary' ) ;
2525 public static readonly description = messages . getMessage ( 'description' ) ;
2626 public static readonly examples = messages . getMessages ( 'examples' ) ;
27- public static readonly deprecateAliases = true ;
28- public static readonly aliases = [ 'force:logic:test:report' ] ;
2927
3028 public static readonly flags = {
3129 'target-org' : requiredOrgFlagWithDeprecations ,
@@ -61,7 +59,7 @@ export default class Test extends SfCommand<RunResult> {
6159 const { flags } = await this . parse ( Test ) ;
6260
6361 return TestGetBase . execute ( {
64- connection : flags [ 'target-org' ] . getConnection ( ) ,
62+ connection : flags [ 'target-org' ] . getConnection ( flags [ 'api-version' ] ) ,
6563 testRunId : flags [ 'test-run-id' ] ,
6664 codeCoverage : flags [ 'code-coverage' ] ,
6765 outputDir : flags [ 'output-dir' ] ,
You can’t perform that action at this time.
0 commit comments