Don't rename dict ... we can use it as is
This commit is contained in:
@@ -363,9 +363,9 @@ def test_rpc_balance_handle_error(default_conf, mocker):
|
||||
assert 'USD' == result['symbol']
|
||||
assert result['currencies'] == [{
|
||||
'currency': 'BTC',
|
||||
'available': 10.0,
|
||||
'free': 10.0,
|
||||
'balance': 12.0,
|
||||
'pending': 2.0,
|
||||
'used': 2.0,
|
||||
'est_btc': 12.0,
|
||||
}]
|
||||
assert result['total'] == 12.0
|
||||
@@ -417,22 +417,22 @@ def test_rpc_balance_handle(default_conf, mocker):
|
||||
assert 'USD' == result['symbol']
|
||||
assert result['currencies'] == [
|
||||
{'currency': 'BTC',
|
||||
'available': 10.0,
|
||||
'free': 10.0,
|
||||
'balance': 12.0,
|
||||
'pending': 2.0,
|
||||
'used': 2.0,
|
||||
'est_btc': 12.0,
|
||||
},
|
||||
{'available': 1.0,
|
||||
{'free': 1.0,
|
||||
'balance': 5.0,
|
||||
'currency': 'ETH',
|
||||
'est_btc': 0.05,
|
||||
'pending': 4.0
|
||||
'used': 4.0
|
||||
},
|
||||
{'available': 5.0,
|
||||
{'free': 5.0,
|
||||
'balance': 10.0,
|
||||
'currency': 'PAX',
|
||||
'est_btc': 0.1,
|
||||
'pending': 5.0}
|
||||
'used': 5.0}
|
||||
]
|
||||
assert result['total'] == 12.15
|
||||
|
||||
|
@@ -251,9 +251,9 @@ def test_api_balance(botclient, mocker, rpc_balance):
|
||||
assert len(rc.json["currencies"]) == 5
|
||||
assert rc.json['currencies'][0] == {
|
||||
'currency': 'BTC',
|
||||
'available': 12.0,
|
||||
'free': 12.0,
|
||||
'balance': 12.0,
|
||||
'pending': 0.0,
|
||||
'used': 0.0,
|
||||
'est_btc': 12.0,
|
||||
}
|
||||
|
||||
|
@@ -577,8 +577,8 @@ def test_balance_handle_too_large_response(default_conf, update, mocker) -> None
|
||||
curr = choice(ascii_uppercase) + choice(ascii_uppercase) + choice(ascii_uppercase)
|
||||
balances.append({
|
||||
'currency': curr,
|
||||
'available': 1.0,
|
||||
'pending': 0.5,
|
||||
'free': 1.0,
|
||||
'used': 0.5,
|
||||
'balance': i,
|
||||
'est_btc': 1
|
||||
})
|
||||
|
Reference in New Issue
Block a user