Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
gqln authored and gqln committed Jul 5, 2021
1 parent 2b28117 commit 2801d09
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tests/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
localnet:
image: "solanalabs/solana:stable"
image: "solanalabs/solana:edge"
ports:
- "8899:8899"
- "8900:8900"
Expand Down
7 changes: 7 additions & 0 deletions tests/integration/test_http_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,13 @@ def test_get_confirmed_signature_for_address2(test_http_client):
assert_valid_response(resp)


@pytest.mark.integration
def test_get_signatures_for_address(test_http_client):
"""Test get signatures for addresses."""
resp = test_http_client.get_signatures_for_address("Vote111111111111111111111111111111111111111", limit=1)
assert_valid_response(resp)


@pytest.mark.integration
def test_get_epoch_info(test_http_client):
"""Test get epoch info."""
Expand Down

0 comments on commit 2801d09

Please sign in to comment.