1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 07:28:10 +00:00

tests: fix flake errors

This commit is contained in:
Pavol Rusnak 2020-07-03 16:54:35 +02:00
parent 09a212dca0
commit d720fa3f83
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
2 changed files with 2 additions and 1 deletions

View File

@ -118,7 +118,7 @@ def test_chain_ids(client, chain_id, slip44, sig):
def test_with_data(client):
sig_v, sig_r, sig_s = ethereum.sign_tx(
client,
n=parse_path(f"m/44h/60h/0h/0/0"),
n=parse_path("m/44h/60h/0h/0/0"),
nonce=0,
gas_price=20000000000,
gas_limit=21000,

View File

@ -36,6 +36,7 @@ TXHASH_f55c5b = bytes.fromhex(
"f55c5bc925eb2a0bf9de0ac142b24bed81ec46dd2151d5f69728070eaea1aded"
)
# All data taken from T1
@pytest.mark.altcoin
class TestMsgSigntxBitcoinGold: