mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-30 11:28:21 +00:00
fix style
This commit is contained in:
parent
45265cdcb7
commit
57f1dddc2f
@ -142,7 +142,7 @@ class TestMsgGetaddress(TrezorTest):
|
|||||||
node = btc.get_public_node(self.client, parse_path("44'/0'/%d'" % n))
|
node = btc.get_public_node(self.client, parse_path("44'/0'/%d'" % n))
|
||||||
xpubs.append(node.xpub)
|
xpubs.append(node.xpub)
|
||||||
for nr in range(1, 4):
|
for nr in range(1, 4):
|
||||||
with pytest.raises(CallException) as exc:
|
with pytest.raises(CallException):
|
||||||
btc.get_address(
|
btc.get_address(
|
||||||
self.client,
|
self.client,
|
||||||
"Bitcoin",
|
"Bitcoin",
|
||||||
@ -150,7 +150,7 @@ class TestMsgGetaddress(TrezorTest):
|
|||||||
show_display=(nr == 1),
|
show_display=(nr == 1),
|
||||||
multisig=getmultisig(0, 0, xpubs=xpubs),
|
multisig=getmultisig(0, 0, xpubs=xpubs),
|
||||||
)
|
)
|
||||||
with pytest.raises(CallException) as exc:
|
with pytest.raises(CallException):
|
||||||
btc.get_address(
|
btc.get_address(
|
||||||
self.client,
|
self.client,
|
||||||
"Bitcoin",
|
"Bitcoin",
|
||||||
|
@ -54,7 +54,6 @@ from trezorlib import messages as proto, stellar
|
|||||||
from trezorlib.tools import parse_path
|
from trezorlib.tools import parse_path
|
||||||
|
|
||||||
from .common import TrezorTest
|
from .common import TrezorTest
|
||||||
from .conftest import TREZOR_VERSION
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.stellar
|
@pytest.mark.stellar
|
||||||
|
Loading…
Reference in New Issue
Block a user