Skip to content

Commit c075065

Browse files
author
Roman
committed
add all supported wallets for tests
1 parent c6f4c58 commit c075065

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

tests/e2e_tests/conftest.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,19 @@ def bob_wallet():
278278
return wallet
279279

280280

281+
@pytest.fixture
282+
def charlie_wallet():
283+
keypair, wallet = setup_wallet("//Charlie")
284+
return wallet
285+
286+
281287
@pytest.fixture
282288
def dave_wallet():
283289
keypair, wallet = setup_wallet("//Dave")
284290
return wallet
291+
292+
293+
@pytest.fixture
294+
def eve_wallet():
295+
keypair, wallet = setup_wallet("//Eve")
296+
return wallet

0 commit comments

Comments
 (0)