Skip to content

Commit

Permalink
test: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeday committed Oct 1, 2024
1 parent cd2b597 commit a8e5f29
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/sdk/src/l2/__test__/l2.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,14 @@ describe('LidoSDKL2', () => {

test('has correct address', async () => {
const address = await l2.contractAddress();
const stethAddress = await l2.core.getL2ContractAddress(
const stethAddress = l2.core.getL2ContractAddress(
LIDO_L2_CONTRACT_NAMES.steth,
);
expectAddress(address, stethAddress);
});

test('has contract', async () => {
const stethAddress = await l2.core.getL2ContractAddress(
const stethAddress = l2.core.getL2ContractAddress(
LIDO_L2_CONTRACT_NAMES.steth,
);
const contract = await l2.getContract();
Expand Down Expand Up @@ -128,7 +128,7 @@ describe('LidoSDKL2 wrap', () => {
});

testSpending('wrap populate', async () => {
const stethAddress = await l2.core.getL2ContractAddress(
const stethAddress = l2.core.getL2ContractAddress(
LIDO_L2_CONTRACT_NAMES.steth,
);
const tx = await l2.wrapWstethToStethPopulateTx({ value });
Expand All @@ -139,7 +139,7 @@ describe('LidoSDKL2 wrap', () => {
});

testSpending('wrap simulate', async () => {
const stethAddress = await l2.core.getL2ContractAddress(
const stethAddress = l2.core.getL2ContractAddress(
LIDO_L2_CONTRACT_NAMES.steth,
);
const tx = await l2.wrapWstethToStethSimulateTx({ value });
Expand Down Expand Up @@ -174,7 +174,7 @@ describe('LidoSDKL2 wrap', () => {
});

testSpending('unwrap steth populate', async () => {
const stethAddress = await l2.core.getL2ContractAddress(
const stethAddress = l2.core.getL2ContractAddress(
LIDO_L2_CONTRACT_NAMES.steth,
);
const tx = await l2.unwrapPopulateTx({ value });
Expand All @@ -185,7 +185,7 @@ describe('LidoSDKL2 wrap', () => {
});

testSpending('unwrap steth simulate', async () => {
const stethAddress = await l2.core.getL2ContractAddress(
const stethAddress = l2.core.getL2ContractAddress(
LIDO_L2_CONTRACT_NAMES.steth,
);
const tx = await l2.unwrapSimulateTx({ value });
Expand Down Expand Up @@ -303,7 +303,7 @@ describe('LidoSDKL2Steth shares', () => {
});

test('simulate transfer', async () => {
const contractAddressSteth = await l2.steth.core.getL2ContractAddress(
const contractAddressSteth = l2.steth.core.getL2ContractAddress(
LIDO_L2_CONTRACT_NAMES.steth,
);
const tx = await l2.steth.simulateTransferShares({
Expand Down

0 comments on commit a8e5f29

Please sign in to comment.