Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
StuartGavidia committed Nov 8, 2023
1 parent f063520 commit 68d09c0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/builder/src/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { ethers } from 'ethers';
import { EventEmitter } from 'events';
import _ from 'lodash';
import { CannonWrapperGenericProvider } from './error/provider';
import { CannonLoader, InMemoryLoader, IPFSLoader } from './loader';
import { CannonLoader, IPFSLoader } from './loader';
import { CannonRegistry } from './registry';
import { ChainBuilderRuntimeInfo, ContractArtifact, DeploymentInfo } from './types';
import { getExecutionSigner } from './util';
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/commands/alter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ describe('alter', () => {
jest.spyOn(CannonStorage.prototype, 'readDeploy').mockResolvedValue(testPkgData);
jest.spyOn(CannonStorage.prototype, 'putDeploy').mockResolvedValue(newUrl);
jest.mocked(createDefaultReadRegistry).mockResolvedValue(Promise.resolve(mockedFallBackRegistry));

localLoader = new LocalLoader('path');
ipfsLoader = new CliLoader(new IPFSLoader('ipfs'), new IPFSLoader('ipfs'), 'path');

Expand Down
1 change: 0 additions & 1 deletion packages/cli/src/commands/fetch.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ describe('fetch', () => {
getMetaUrl: jest.fn().mockResolvedValue('file:/usecannon.com/meta'),
};


localLoader = new LocalLoader('path');
ipfsLoader = new CliLoader(new IPFSLoader('ipfs'), new IPFSLoader('ipfs'), 'path');

Expand Down

0 comments on commit 68d09c0

Please sign in to comment.