BUG: fixed Python 2 issue

This commit is contained in:
Frederic Fortier
2018-02-07 00:45:33 -05:00
parent c5bed6e8c4
commit 2d43955abf
2 changed files with 5 additions and 3 deletions
+4 -2
View File
@@ -215,8 +215,10 @@ class Marketplace:
print('\nThe price for a monthly subscription to this dataset is'
' {} ENG'.format(price))
print('Checking that the ENG balance in {} is greater than '
'{} ENG... '.format(address, price), end='')
print(
'Checking that the ENG balance in {} is greater than {} '
'ENG... '.format(address, price)
)
wallet_address = address[2:]
balance = self.web3.eth.call({
+1 -1
View File
@@ -16,7 +16,7 @@ class TestMarketplace(WithLogger, ZiplineTestCase):
def test_subscribe(self):
marketplace = Marketplace()
marketplace.subscribe('marketcap1234')
marketplace.subscribe('marketcap2222')
pass
def test_ingest(self):