Skip to content

Commit 10266b8

Browse files
test: fix incorrect constructor
1 parent 8707c8d commit 10266b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/stableborrow/stabilize/unitary/test_pk_offboarding.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@
1313

1414

1515
@pytest.fixture(scope="module")
16-
def offboarding(stablecoin, receiver, admin, peg_keepers):
16+
def offboarding(receiver, admin, peg_keepers):
17+
# TODO should come from deployers
1718
hr = boa.load(
1819
'contracts/stabilizer/PegKeeperOffboarding.vy',
19-
stablecoin, ZERO_ADDRESS, receiver, admin, admin
20+
receiver, admin, admin
2021
)
2122
with boa.env.prank(admin):
2223
for peg_keeper in peg_keepers:
@@ -109,4 +110,3 @@ def test_admin(reg, admin, alice, agg, receiver):
109110
reg.set_admin(alice)
110111
assert reg.admin() == alice
111112

112-

0 commit comments

Comments
 (0)