Skip to content

Commit d13a973

Browse files
Copiloticlanton
andauthored
Fix CI lint failure: rename mixed-case test property to satisfy naming-convention rule
Co-authored-by: iclanton <5010588+iclanton@users.noreply.github.com>
1 parent 19f5c0b commit d13a973

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

libraries/rush-lib/src/logic/operations/test/TrimRushEnvironmentVariablesPlugin.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ describe(TrimRushEnvironmentVariablesPlugin.name, () => {
8383
const initialEnvironment: IEnvironment = {
8484
...process.env,
8585
RUSH_TEMP_FOLDER: 'some-temp-folder',
86-
Rush_Some_Mixed_Case_Var: 'should also be trimmed',
86+
rush_someMixedCaseVar: 'should also be trimmed',
8787
RUSHSTACK_FILE_ERROR_BASE_FOLDER: 'should be preserved',
8888
PATH: process.env.PATH,
8989
SOME_OTHER_VAR: 'should be preserved'
@@ -92,7 +92,7 @@ describe(TrimRushEnvironmentVariablesPlugin.name, () => {
9292
const env: IEnvironment = graphHooks.createEnvironmentForOperation.call(initialEnvironment, mockRecord);
9393

9494
expect(env.RUSH_TEMP_FOLDER).toBeUndefined();
95-
expect(env.Rush_Some_Mixed_Case_Var).toBeUndefined();
95+
expect(env.rush_someMixedCaseVar).toBeUndefined();
9696
expect(env.RUSHSTACK_FILE_ERROR_BASE_FOLDER).toBe('should be preserved');
9797
expect(env.SOME_OTHER_VAR).toBe('should be preserved');
9898
});

0 commit comments

Comments
 (0)