Skip to content

Commit

Permalink
change ov total supply on tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasCImach committed Aug 8, 2024
1 parent abaad24 commit 041e340
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/deployers/market/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def governor_role():
yield web3.solidityKeccak(['string'], ["GOVERNOR"])


@pytest.fixture(scope="module", params=[8000000])
@pytest.fixture(scope="module", params=[88888888])
def create_token(gov, alice, bob, minter_role, request):
sup = request.param

Expand Down
2 changes: 1 addition & 1 deletion tests/factories/market/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def risk_manager_role():
yield web3.solidityKeccak(['string'], ["RISK_MANAGER"])


@pytest.fixture(scope="module", params=[8000000])
@pytest.fixture(scope="module", params=[88888888])
def create_token(gov, alice, bob, minter_role, risk_manager_role, request):
sup = request.param

Expand Down
2 changes: 1 addition & 1 deletion tests/feeds/chainlink/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def chainlink_aggregator():
yield Contract.from_explorer("0x91F9C89891575C2E41edfFB5953565A9aE2Dbd9F")


@pytest.fixture(scope="module", params=[8000000])
@pytest.fixture(scope="module", params=[88888888])
def create_token(gov, alice, bob, minter_role, request):
sup = request.param

Expand Down
2 changes: 1 addition & 1 deletion tests/markets/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def risk_manager_role():
yield web3.solidityKeccak(['string'], ["RISK_MANAGER"])


@pytest.fixture(scope="module", params=[8000000])
@pytest.fixture(scope="module", params=[88888888])
def create_token(gov, alice, bob, minter_role, risk_manager_role, request):
sup = request.param

Expand Down
2 changes: 1 addition & 1 deletion tests/token/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def guardian_role():
yield web3.solidityKeccak(['string'], ["GUARDIAN"])


@pytest.fixture(scope="module", params=[8000000])
@pytest.fixture(scope="module", params=[88888888])
def create_token(gov, alice, bob, minter_role, request):
sup = request.param

Expand Down
2 changes: 1 addition & 1 deletion tests/token/test_conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ def test_erc20(token):
assert token.decimals() == 18
assert token.name() == "Overlay"
assert token.symbol() == "OV"
assert token.totalSupply() == 8000000 * 1e18
assert token.totalSupply() == 88888888 * 1e18

0 comments on commit 041e340

Please sign in to comment.