Skip to content

Commit af2e862

Browse files
committed
Fix a lint issue.
1 parent 25784ad commit af2e862

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/rush-lib/src/cli/test/RushCommandLineParser.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ interface ISpawnMockConfig {
1616
returnCode: number;
1717
}
1818

19-
interface ChildProcessModuleMock {
19+
interface IChildProcessModuleMock {
2020
/**
2121
* Initialize the `spawn` mock behavior.
2222
*/
@@ -39,7 +39,7 @@ interface IParserTestInstance {
3939
*/
4040
function setSpawnMock(options?: ISpawnMockConfig): jest.Mock {
4141
// eslint-disable-next-line @typescript-eslint/no-var-requires
42-
const cpMocked: ChildProcessModuleMock = require('child_process');
42+
const cpMocked: IChildProcessModuleMock = require('child_process');
4343
cpMocked.__setSpawnMockConfig(options);
4444

4545
const spawnMock: jest.Mock = cpMocked.spawn;

0 commit comments

Comments
 (0)