Skip to content

Commit 0b67ed3

Browse files
committed
Run etherscan tests against goerli
1 parent 6b1440a commit 0b67ed3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

raiden_contracts/tests/test_etherscan_verify.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def test_etherscan_verify_with_guid() -> None:
114114

115115
def test_etherscan_verify_already_verified() -> None:
116116
with requests_mock.Mocker() as m:
117-
chain_id = 3
117+
chain_id = 5
118118
etherscan_api = api_of_chain_id[chain_id]
119119
m.post(
120120
etherscan_api,
@@ -211,7 +211,7 @@ def test_etherscan_verify_unable_to_verify() -> None:
211211

212212
def test_etherscan_verify_success() -> None:
213213
with requests_mock.Mocker() as m:
214-
chain_id = 3
214+
chain_id = 5
215215
etherscan_api = api_of_chain_id[chain_id]
216216
m.post(etherscan_api, text='{ "status": "1", "result" : "guid", "message" : "" }')
217217
m.get(
@@ -253,7 +253,7 @@ def first_fail_second_succeed(_: Any, context: Any) -> str:
253253

254254
def test_etherscan_verify_success_after_a_loop() -> None:
255255
with requests_mock.Mocker() as m:
256-
chain_id = 3
256+
chain_id = 5
257257
etherscan_api = api_of_chain_id[chain_id]
258258
m.post(etherscan_api, text='{ "status": "1", "result" : "guid", "message" : "" }')
259259
m.get(etherscan_api, text=first_fail_second_succeed)

0 commit comments

Comments
 (0)