@@ -104,16 +104,21 @@ class TestGoEthereumAdminModuleTest(GoEthereumAdminModuleTest):
104
104
def test_admin_peers (self , w3 : "Web3" ) -> None :
105
105
super ().test_admin_peers (w3 )
106
106
107
- def test_admin_start_stop_rpc (self , w3 : "Web3" ) -> None :
107
+ def test_admin_start_stop_http (self , w3 : "Web3" ) -> None :
108
108
# 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 )
111
111
112
112
def test_admin_start_stop_ws (self , w3 : "Web3" ) -> None :
113
113
# This test causes all tests after it to fail on CI if it's allowed to run
114
114
pytest .xfail (reason = 'Only one WS endpoint is allowed to be active at any time' )
115
115
super ().test_admin_start_stop_ws (w3 )
116
116
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
+
117
122
118
123
class TestGoEthereumEthModuleTest (GoEthereumEthModuleTest ):
119
124
pass
@@ -162,17 +167,23 @@ async def test_admin_peers(self, w3: "Web3") -> None:
162
167
await super ().test_admin_peers (w3 )
163
168
164
169
@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 :
166
171
# 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 )
169
174
170
175
@pytest .mark .asyncio
171
176
async def test_admin_start_stop_ws (self , w3 : "Web3" ) -> None :
172
177
# This test causes all tests after it to fail on CI if it's allowed to run
173
178
pytest .xfail (reason = 'Only one WS endpoint is allowed to be active at any time' )
174
179
await super ().test_admin_start_stop_ws (w3 )
175
180
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
+
176
187
177
188
class TestGoEthereumAsyncNetModuleTest (GoEthereumAsyncNetModuleTest ):
178
189
pass
0 commit comments