Skip to content
Prev Previous commit
Next Next commit
rollback user stories tests
  • Loading branch information
Ivan Loboda committed Mar 9, 2022
commit 3d1ad109c8c92f5d69be8292f1b3b3e34fee5c30
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, "0x19fb9f0")
self.assertEqual(estimated_gas, "0x19f91f0")

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, "0x19fb9f0")
self.assertEqual(estimated_gas, "0x19f91f0")

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