Skip to content
This repository has been archived by the owner on Sep 8, 2020. It is now read-only.

Commit

Permalink
Bump Pytest version to 5.1.3
Browse files Browse the repository at this point in the history
Signed-off-by: willcl-ark <[email protected]>
  • Loading branch information
willcl-ark committed Sep 27, 2019
1 parent 75bf423 commit 67e57e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest==5.0.1
pytest==5.1.3
psutil==5.6.3
requests==2.22.0
pytest-json==0.4.0
Expand Down
6 changes: 3 additions & 3 deletions tests/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,17 +265,17 @@ def test_start(self, bitcoind, alice):
def test_wallet_balance(self, alice):
gen_and_sync_lnd(alice.bitcoin, [alice])
assert isinstance(alice.get_info(), rpc_pb2.GetInfoResponse)
pytest.raises(TypeError, alice.wallet_balance(), "please")
pytest.raises(TypeError, alice.wallet_balance, "please")

def test_channel_balance(self, alice):
gen_and_sync_lnd(alice.bitcoin, [alice])
assert isinstance(alice.channel_balance(), rpc_pb2.ChannelBalanceResponse)
pytest.raises(TypeError, alice.channel_balance(), "please")
pytest.raises(TypeError, alice.channel_balance, "please")

def test_get_transactions(self, alice):
gen_and_sync_lnd(alice.bitcoin, [alice])
assert isinstance(alice.get_transactions(), rpc_pb2.TransactionDetails)
pytest.raises(TypeError, alice.get_transactions(), "please")
pytest.raises(TypeError, alice.get_transactions, "please")

def test_send_coins(self, alice):
gen_and_sync_lnd(alice.bitcoin, [alice])
Expand Down

0 comments on commit 67e57e7

Please sign in to comment.