Skip to content

Commit

Permalink
fix: fetch contract in test
Browse files Browse the repository at this point in the history
  • Loading branch information
0xkorin committed Oct 16, 2023
1 parent 94ee2dd commit 2662044
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functional/test_redemption.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def test_chainlink_oracle(project, yfi, d_yfi, ve_yfi, gov):
def test_curve_oracle(project, yfi, d_yfi, ve_yfi, gov):
mock = project.MockOracle.deploy(sender=gov)
mock.set_price(AMOUNT, AMOUNT, sender=gov)
curve = ape.Contract("0xC26b89A667578ec7b3f11b2F98d6Fd15C07C54ba")
curve = project.MockOracle.at("0xC26b89A667578ec7b3f11b2F98d6Fd15C07C54ba")
redemption = project.Redemption.deploy(
yfi, d_yfi, ve_yfi, gov, mock, curve, 10 * AMOUNT, sender=gov
)
Expand Down

0 comments on commit 2662044

Please sign in to comment.