From 0fde1d214db968d235ab0814092f5aac1bd286aa Mon Sep 17 00:00:00 2001 From: spuddyminer Date: Mon, 2 Oct 2023 14:33:39 -0400 Subject: [PATCH] fix imports --- tests/test_rpc_endpoint.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_rpc_endpoint.py b/tests/test_rpc_endpoint.py index eb134eae..1de2eeb7 100644 --- a/tests/test_rpc_endpoint.py +++ b/tests/test_rpc_endpoint.py @@ -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 @@ -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: