Skip to content

Commit

Permalink
refactor: function name to lowerCase
Browse files Browse the repository at this point in the history
  • Loading branch information
Debugger022 committed Jan 10, 2024
1 parent 1fade86 commit d109e32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/hardhat/Fork/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export function getContractAddresses(name: string) {
return contractAddreseses[name];
}

export const FORK = (blockNumber: number, fn: () => void) => {
export const forking = (blockNumber: number, fn: () => void) => {
describe(`At block #${blockNumber}`, () => {
before(async () => {
await setForkBlock(blockNumber);
Expand Down

0 comments on commit d109e32

Please sign in to comment.