diff --git a/tests/integration_tests/test_upgrade.py b/tests/integration_tests/test_upgrade.py index be6fe758c5..b655094a7f 100644 --- a/tests/integration_tests/test_upgrade.py +++ b/tests/integration_tests/test_upgrade.py @@ -177,4 +177,4 @@ def test_cosmovisor_upgrade(custom_ethermint: Ethermint): "params", home=cli.data_dir, )) - assert p == {"allowed_clients": ["06-solomachine", "07-tendermint", "09-localhost"]} \ No newline at end of file + assert p == {"allowed_clients": ["06-solomachine", "07-tendermint", "09-localhost"]} diff --git a/tests/integration_tests/test_websockets.py b/tests/integration_tests/test_websockets.py index 3c1cb81554..10d2f4f852 100644 --- a/tests/integration_tests/test_websockets.py +++ b/tests/integration_tests/test_websockets.py @@ -1,11 +1,3 @@ -import asyncio -import json -from collections import defaultdict - -import websockets -from pystarport import ports - - def test_single_request_netversion(ethermint): ethermint.use_websocket() eth_ws = ethermint.w3.provider @@ -14,4 +6,3 @@ def test_single_request_netversion(ethermint): # net_version should be 9000 assert response["result"] == "9000", "got " + response["result"] + ", expected 9000" -