Skip to content

Commit c7c5ac6

Browse files
committed
Rename tradequote file to tradeQuoter
1 parent d8a7256 commit c7c5ac6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/api/utils/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export * from './tradequote';
1+
export * from './tradeQuoter';
22
export * from './coingecko';
33
export * from './gasOracle';
44
export * from './zeroex';
File renamed without changes.

test/api/TradeAPI.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ import { ether } from '@setprotocol/set-protocol-v2/dist/utils/common';
2323
import TradeAPI from '@src/api/TradeAPI';
2424
import TradeModuleWrapper from '@src/wrappers/set-protocol-v2/TradeModuleWrapper';
2525
import type SetTokenAPI from '@src/api/SetTokenAPI';
26-
import { TradeQuoter } from '@src/api/utils/tradequote';
26+
import { TradeQuoter } from '@src/api/utils';
2727
import { expect } from '@test/utils/chai';
2828
import { TradeQuote } from '@src/types';
2929

3030
const provider = new ethers.providers.JsonRpcProvider('http://localhost:8545');
3131

3232
jest.mock('@src/wrappers/set-protocol-v2/TradeModuleWrapper');
33-
jest.mock('@src/api/utils/tradequote');
33+
jest.mock('@src/api/utils/tradeQuoter');
3434

3535
describe('TradeAPI', () => {
3636
let tradeModuleAddress: Address;

0 commit comments

Comments
 (0)