Skip to content

Commit

Permalink
fix: renaming variables to trigger salesforce cla
Browse files Browse the repository at this point in the history
  • Loading branch information
madhur310 committed Dec 26, 2024
1 parent 7ea6dc8 commit 03c3380
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ describe('Telemetry', () => {
['off', false, false]
])(
'should return true if telemetryLevel is %s and SFDX_CORE_CONFIGURATION_NAME.telemetry.enabled is %s',
(first, second, expectedResult) => {
mockConfiguration.get.mockReturnValueOnce(first);
mockConfiguration.get.mockReturnValueOnce(second);
(firstReturnValue, secondReturnValue, expectedResult) => {
mockConfiguration.get.mockReturnValueOnce(firstReturnValue);
mockConfiguration.get.mockReturnValueOnce(secondReturnValue);

const result = instance.isTelemetryExtensionConfigurationEnabled();

Expand Down

0 comments on commit 03c3380

Please sign in to comment.