Skip to content

Commit b549945

Browse files
committed
fix: copilot feedback
1 parent 33d5696 commit b549945

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

test/benchmark.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
} from "../typechain-types";
1111
import { deploy } from "../scripts/deployment-utils/deploy";
1212

13-
describe("FlypverDiscovery benchmark", () => {
13+
describe("FlyoverDiscovery benchmark", () => {
1414
async function deployLbc() {
1515
const network = hre.network.name;
1616
const deployInfo = await deployLbcProxy(network, { verbose: false });

test/utils/fixtures.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@ export async function deployLbcFixture() {
3232
.getSigners()
3333
.then((signers) => signers.slice(1));
3434

35-
const bridgeMock = await lbc
36-
.bridge()
37-
.then((bridgeAddress) => ethers.getContractAt("BridgeMock", bridgeAddress));
35+
const bridgeAddress = await lbc.bridge();
36+
const bridgeMock = await ethers.getContractAt("BridgeMock", bridgeAddress);
3837
return { lbc, lbcOwner, accounts, bridgeMock };
3938
}
4039

0 commit comments

Comments
 (0)