Skip to content

Commit 8aee11c

Browse files
authored
Fix merge bug (#61)
1 parent ed848f4 commit 8aee11c

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/solutions/solution-manager.factories.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,16 @@ export type MockSolutionManager = jest.Mocked<StubEvents<SolutionManager>> & { f
2626

2727
export const idleSolutionLoadStateFactory = makeFactory<SolutionLoadState>({
2828
solutionPath: () => undefined,
29-
activated: () => false,
29+
activated: () => undefined,
3030
loaded: () => undefined,
3131
converted: () => undefined,
32-
activated: () => undefined,
3332
});
3433

3534
export const activeSolutionLoadStateFactory = makeFactory<SolutionLoadState>({
3635
solutionPath: () => path.join(faker.system.filePath(), `${faker.word.noun()}.csolution.yml`),
3736
activated: () => true,
3837
loaded: () => undefined,
3938
converted: () => undefined,
40-
activated: () => true,
4139
});
4240

4341
const fireOnDidChangeLoadState = (emitter: vscode.EventEmitter<SolutionLoadStateChangeEvent>) => {

0 commit comments

Comments
 (0)