Skip to content

Commit

Permalink
chore: rename zap to camel case
Browse files Browse the repository at this point in the history
  • Loading branch information
Macket committed Feb 5, 2024
1 parent e4dc6d3 commit 16c7b8c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions scripts/deploy.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/python3

from brownie import network
from brownie import deposit_and_stake_zap, accounts
from brownie import DepositAndStakeZap, accounts


def main():
Expand All @@ -12,4 +12,4 @@ def main():
elif not network.show_active().endswith("-fork"):
accounts.load('curve-deployer')
txparams.update({'from': accounts[0]})
return deposit_and_stake_zap.deploy(txparams)
return DepositAndStakeZap.deploy(txparams)
4 changes: 2 additions & 2 deletions tests/fixtures/deployments.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@


@pytest.fixture(scope="module")
def zap(deposit_and_stake_zap, alice):
return deposit_and_stake_zap.deploy({'from': alice})
def zap(DepositAndStakeZap, alice):
return DepositAndStakeZap.deploy({'from': alice})

0 comments on commit 16c7b8c

Please sign in to comment.