1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-24 13:22:05 +00:00

Remove unnecessary comments in test

This commit is contained in:
M1nd3r 2024-03-14 14:20:26 +01:00 committed by M1nd3r
parent aa346086c3
commit fa82bb1132

View File

@ -104,10 +104,10 @@ class TestWireTrezorHostProtocolV1(unittest.TestCase):
with self.assertRaises(StopIteration) as e:
gen.send(cid_req_message)
gen.send(None) # TODO fix this weird behaviour
gen.send(None)
gen.send(message)
gen.send(None) # TODO fix this weird behaviour
gen.send(None) # TODO fix this weird behaviour
gen.send(None)
gen.send(None)
# e.value is StopIteration. e.value.value is the return value of the call
result = e.value.value