Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSpuddy committed Oct 2, 2023
1 parent 8d4a701 commit 0fde1d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_rpc_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"""
import pytest
from brownie import chain
from requests.exceptions import HTTPError
from requests.exceptions import ConnectionError
from requests.exceptions import HTTPError

from telliot_core.model.endpoints import EndpointList
from telliot_core.model.endpoints import RPCEndpoint
Expand Down Expand Up @@ -41,7 +41,7 @@ def test_incomplete_rpc_url():
except HTTPError:
pass # expected
except ConnectionError:
pass # expected
pass # expected
except ValueError as e:
assert "Invalid request path" in str(e)
else:
Expand Down

0 comments on commit 0fde1d2

Please sign in to comment.