@@ -104,16 +104,21 @@ class TestGoEthereumAdminModuleTest(GoEthereumAdminModuleTest):
104104 def test_admin_peers (self , w3 : "Web3" ) -> None :
105105 super ().test_admin_peers (w3 )
106106
107- def test_admin_start_stop_rpc (self , w3 : "Web3" ) -> None :
107+ def test_admin_start_stop_http (self , w3 : "Web3" ) -> None :
108108 # This test causes all tests after it to fail on CI if it's allowed to run
109- pytest .xfail (reason = 'Only one RPC endpoint is allowed to be active at any time' )
110- super ().test_admin_start_stop_rpc (w3 )
109+ pytest .xfail (reason = 'Only one HTTP endpoint is allowed to be active at any time' )
110+ super ().test_admin_start_stop_http (w3 )
111111
112112 def test_admin_start_stop_ws (self , w3 : "Web3" ) -> None :
113113 # This test causes all tests after it to fail on CI if it's allowed to run
114114 pytest .xfail (reason = 'Only one WS endpoint is allowed to be active at any time' )
115115 super ().test_admin_start_stop_ws (w3 )
116116
117+ def test_admin_start_stop_rpc (self , w3 : "Web3" ) -> None :
118+ # This test causes all tests after it to fail on CI if it's allowed to run
119+ pytest .xfail (reason = 'Only one RPC endpoint is allowed to be active at any time' )
120+ super ().test_admin_start_stop_rpc (w3 )
121+
117122
118123class TestGoEthereumEthModuleTest (GoEthereumEthModuleTest ):
119124 pass
@@ -162,17 +167,23 @@ async def test_admin_peers(self, w3: "Web3") -> None:
162167 await super ().test_admin_peers (w3 )
163168
164169 @pytest .mark .asyncio
165- async def test_admin_start_stop_rpc (self , w3 : "Web3" ) -> None :
170+ async def test_admin_start_stop_http (self , w3 : "Web3" ) -> None :
166171 # This test causes all tests after it to fail on CI if it's allowed to run
167- pytest .xfail (reason = 'Only one RPC endpoint is allowed to be active at any time' )
168- await super ().test_admin_start_stop_rpc (w3 )
172+ pytest .xfail (reason = 'Only one HTTP endpoint is allowed to be active at any time' )
173+ await super ().test_admin_start_stop_http (w3 )
169174
170175 @pytest .mark .asyncio
171176 async def test_admin_start_stop_ws (self , w3 : "Web3" ) -> None :
172177 # This test causes all tests after it to fail on CI if it's allowed to run
173178 pytest .xfail (reason = 'Only one WS endpoint is allowed to be active at any time' )
174179 await super ().test_admin_start_stop_ws (w3 )
175180
181+ @pytest .mark .asyncio
182+ async def test_admin_start_stop_rpc (self , w3 : "Web3" ) -> None :
183+ # This test causes all tests after it to fail on CI if it's allowed to run
184+ pytest .xfail (reason = 'Only one RPC endpoint is allowed to be active at any time' )
185+ await super ().test_admin_start_stop_rpc (w3 )
186+
176187
177188class TestGoEthereumAsyncNetModuleTest (GoEthereumAsyncNetModuleTest ):
178189 pass
0 commit comments