mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-06-27 02:12:35 +00:00
more fixes
This commit is contained in:
parent
52ad4e9f0d
commit
021389efe8
@ -96,7 +96,10 @@ class TestProtectCall(common.TrezorTest):
|
|||||||
self.client.setup_debuglink(button=True, pin_correct=False)
|
self.client.setup_debuglink(button=True, pin_correct=False)
|
||||||
|
|
||||||
def test_backoff(attempts, start):
|
def test_backoff(attempts, start):
|
||||||
expected = 0.2 * (2 ** attempts)
|
if attempts <= 1:
|
||||||
|
expected = 0.2
|
||||||
|
else:
|
||||||
|
expected = (2 ** (attempts - 2))
|
||||||
got = time.time() - start
|
got = time.time() - start
|
||||||
|
|
||||||
msg = "Pin delay expected to be at least %s seconds, got %s" % (expected, got)
|
msg = "Pin delay expected to be at least %s seconds, got %s" % (expected, got)
|
||||||
|
@ -209,7 +209,7 @@ class Commands(object):
|
|||||||
|
|
||||||
def firmware_update(self, args):
|
def firmware_update(self, args):
|
||||||
if args.file:
|
if args.file:
|
||||||
fp = open(args.file, 'r')
|
fp = open(args.file, 'rb').read()
|
||||||
elif args.url:
|
elif args.url:
|
||||||
print("Downloading from", args.url)
|
print("Downloading from", args.url)
|
||||||
r = requests.get(args.url)
|
r = requests.get(args.url)
|
||||||
|
Loading…
Reference in New Issue
Block a user