From 781c73ceab865773f926f7c72cf04ffdbe621137 Mon Sep 17 00:00:00 2001 From: Alberto Date: Mon, 14 Oct 2024 18:26:19 +0200 Subject: [PATCH] chore: remove redundant test --- tests/integration/test_deploy_vault.py | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 tests/integration/test_deploy_vault.py diff --git a/tests/integration/test_deploy_vault.py b/tests/integration/test_deploy_vault.py deleted file mode 100644 index e975025..0000000 --- a/tests/integration/test_deploy_vault.py +++ /dev/null @@ -1,14 +0,0 @@ -import boa - - -def test_deploy_vault(vault_factory, crvusd): - vault = vault_factory.deploy_new_vault( - crvusd, - "Staked crvUSD", - "st-crvUSD", - # TODO figure out who's going to be the role manager - boa.env.generate_address(), - 1234, - ) - vault = boa.load_partial("contracts/yearn/VaultV3.vy").at(vault) - assert vault.name() == "Staked crvUSD"