Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoguerios committed Jan 15, 2025
1 parent 1561898 commit 3c604b9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions modules/sor/sorV2/lib/poolsV3/stable/stablePool.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { parseEther, parseUnits } from 'viem';

import { PrismaPoolAndHookWithDynamic } from '../../../../../../prisma/prisma-types';
import { WAD } from '../../utils/math';
import { StablePool } from './stablePool';
import { StablePoolV3 } from './stablePool';

import { Token, TokenAmount } from '@balancer/sdk';

Expand All @@ -22,8 +22,8 @@ describe('SOR V3 Stable Pool Tests', () => {
let amp: string;
let scalingFactors: bigint[];
let aggregateSwapFee: bigint;
let stablePool: StablePool;
let stablePoolWithHook: StablePool;
let stablePool: StablePoolV3;
let stablePoolWithHook: StablePoolV3;
let stablePrismaPool: PrismaPoolAndHookWithDynamic;
let stablePrismaPoolWithHook: PrismaPoolAndHookWithDynamic;
let swapFee: string;
Expand Down Expand Up @@ -93,7 +93,7 @@ describe('SOR V3 Stable Pool Tests', () => {
enableRemoveLiquidityCustom: false,
},
});
stablePool = StablePool.fromPrismaPool(stablePrismaPool);
stablePool = StablePoolV3.fromPrismaPool(stablePrismaPool);

stablePrismaPoolWithHook = prismaPoolFactory.build({
address: poolAddress,
Expand All @@ -112,7 +112,7 @@ describe('SOR V3 Stable Pool Tests', () => {
enableRemoveLiquidityCustom: false,
},
});
stablePoolWithHook = StablePool.fromPrismaPool(stablePrismaPoolWithHook);
stablePoolWithHook = StablePoolV3.fromPrismaPool(stablePrismaPoolWithHook);
});

test('Get Pool State', () => {
Expand Down

0 comments on commit 3c604b9

Please sign in to comment.