From 747f128139ef2a5bcd9841f39d4a92d0e91760b9 Mon Sep 17 00:00:00 2001 From: skosito Date: Fri, 26 Apr 2024 13:43:56 +0200 Subject: [PATCH] lint --- tests/integration_tests/test_upgrade.py | 2 +- tests/integration_tests/test_websockets.py | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) 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" -