Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Uxio0 committed Oct 25, 2022
1 parent 8522b5b commit 951c2fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/api/test_gnosis_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ class TestTransactionService(unittest.TestCase):
def setUp(self) -> None:
self.ethereum_client = EthereumClient("http://localhost:8545")
with mock.patch.object(
EthereumClient, "get_network", return_value=EthereumNetwork.RINKEBY
EthereumClient, "get_network", return_value=EthereumNetwork.GOERLI
):
self.transaction_service = TransactionServiceApi.from_ethereum_client(
self.ethereum_client
) # Rinkeby
self.safe_address = "0x7552Ed65a45E27740a15B8D5415E90d8ca64C109"
) # Goerli
self.safe_address = "0x24833C9c4644a70250BCCBcB5f8529b609eaE6EC"

def test_data_decoded_to_text(self):
test_data = {
Expand Down

0 comments on commit 951c2fe

Please sign in to comment.