forked from LBRYCommunity/lbry-sdk
.travis.yml
This commit is contained in:
parent
93d2173fad
commit
74a9e17178
2 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ jobs:
|
|||
- name: "Integration Tests"
|
||||
install:
|
||||
- pip install tox-travis coverage
|
||||
- pushd .. && git clone --single-branch --branch sqltrie https://github.com/lbryio/torba.git && popd
|
||||
- pushd .. && git clone --single-branch --branch sqltrie https://github.com/lbryio/torba.git && git branch && popd
|
||||
script: tox
|
||||
after_success:
|
||||
- coverage combine tests/
|
||||
|
|
|
@ -7,7 +7,7 @@ class TestClaimtrie(CommandTestCase):
|
|||
return tx['outputs'][0]['claim_id']
|
||||
|
||||
async def assertWinningClaim(self, name, tx):
|
||||
other = (await self.out(self.daemon.jsonrpc_claim_search(name=name, is_controlling=True)))['items'][0]
|
||||
other = (await self.resolve(name))[name]
|
||||
self.assertEqual(self.get_claim_id(tx), other['claim_id'])
|
||||
|
||||
async def test_designed_edge_cases(self):
|
||||
|
|
Loading…
Reference in a new issue