Skip to content
Prev Previous commit
Next Next commit
fix user stories test
  • Loading branch information
Ivan Loboda committed Mar 7, 2022
commit 7dd595c36330cb3c9c6ee2aa595ce252e7c3284d
4 changes: 2 additions & 2 deletions proxy/testing/test_user_stories.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def test_01_check_eth_estimateGas_on_deploying_a_contract(self):
print('response:', response)
estimated_gas = response['result']

self.assertEqual(estimated_gas, "0x19f91f0")
self.assertEqual(estimated_gas, "0x19fb9f0")

def test_02_check_eth_estimateGas_on_deploying_a_contract_with_the_empty_value(self):
print("https://github.com/neonlabsorg/proxy-model.py/issues/122")
Expand All @@ -58,7 +58,7 @@ def test_02_check_eth_estimateGas_on_deploying_a_contract_with_the_empty_value(s
print('response:', response)
estimated_gas = response['result']

self.assertEqual(estimated_gas, "0x19f91f0")
self.assertEqual(estimated_gas, "0x19fb9f0")

def test_03_check_eth_estimateGas_on_deploying_a_contract_with_the_empty_data(self):
print("https://github.com/neonlabsorg/proxy-model.py/issues/122")
Expand Down