Skip to content
This repository has been archived by the owner on Nov 15, 2021. It is now read-only.

Commit

Permalink
fix test broken when merging from development
Browse files Browse the repository at this point in the history
  • Loading branch information
localhuman committed Feb 14, 2018
1 parent 288f87b commit a278708
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neo/SmartContract/tests/test_gas_costs.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def test_build_contract_3(self):
expected_fee = Fixed8.FromDecimal(.001)
self.assertEqual(expected_cost, engine.GasConsumed())
self.assertEqual(tx.Gas, expected_fee)
self.assertEqual(result, bytearray(b'\xab\xab\xab\xab\xab\xab'))
self.assertEqual(result.GetByteArray(), bytearray(b'\xab\xab\xab\xab\xab\xab'))

def test_build_contract_4(self):
"""
Expand Down

0 comments on commit a278708

Please sign in to comment.