Skip to content

Commit

Permalink
Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
hectorgomezv committed Jul 27, 2022
1 parent 55a7966 commit 7927062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnosis/eth/tests/test_ethereum_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@ def test_raw_batch_request(self, session_post_mock: MagicMock):

class TestEthereumNetwork(EthereumTestCaseMixin, TestCase):
def test_unknown_ethereum_network_name(self):
self.assertEqual(EthereumNetwork(9), EthereumNetwork.UNKNOWN)
self.assertEqual(EthereumNetwork(123456789), EthereumNetwork.UNKNOWN)

def test_mainnet_ethereum_network_name(self):
self.assertEqual(EthereumNetwork(1), EthereumNetwork.MAINNET)
Expand Down

0 comments on commit 7927062

Please sign in to comment.