Skip to content

Commit 19c73fd

Browse files
committed
style: dot notation > bracket where possible
1 parent 6012017 commit 19c73fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/commands/apex/get/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export default class Test extends SfCommand<RunResult> {
6868
'result-format': flags['result-format'],
6969
json: flags.json,
7070
'code-coverage': flags['code-coverage'],
71-
concise: flags['concise'],
71+
concise: flags.concise,
7272
});
7373
}
7474
}

src/reporters/testReporter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export class TestReporter {
5555
options['output-dir'],
5656
options['result-format'] as ResultFormat | undefined,
5757
Boolean(options['detailed-coverage']),
58-
options['concise'],
58+
options.concise,
5959
options.synchronous
6060
);
6161

0 commit comments

Comments
 (0)