Skip to content

Commit f017e48

Browse files
committed
fix: fix
1 parent 62ebcfd commit f017e48

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/assets-controllers/src/AssetsContractController.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ describe('AssetsContractController', () => {
612612
const { assetsContract, messenger, provider, networkClientConfiguration } =
613613
await setupAssetContractControllers();
614614
assetsContract.configure({ provider });
615-
const errorLogSpy = jest.spyOn(console, 'error').mockImplementationOnce(() => {}); // jest.spyOn(console, 'log').mockImplementation(() => {});
615+
const errorLogSpy = jest.spyOn(console, 'error').mockImplementationOnce(() => {});
616616
mockNetworkWithDefaultChainId({
617617
networkClientConfiguration,
618618
mocks: [
@@ -655,8 +655,6 @@ describe('AssetsContractController', () => {
655655
);
656656
expect(uri).toBe('https://api.godsunchained.com/card/0');
657657
expect(errorLogSpy).toHaveBeenCalledTimes(1);
658-
659-
console.log('heeere', errorLogSpy.mock.calls)
660658
expect(errorLogSpy.mock.calls).toContainEqual(['Contract does not support ERC721 metadata interface.']);
661659

662660
messenger.clearEventSubscriptions('NetworkController:networkDidChange');

0 commit comments

Comments
 (0)