mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-02-21 03:52:04 +00:00
13 lines
216 B
Python
13 lines
216 B
Python
![]() |
import unittest
|
||
|
import common
|
||
|
|
||
|
from trezorlib import messages_pb2 as messages
|
||
|
|
||
|
class TestDeviceReset(common.TrezorTest):
|
||
|
|
||
|
def test_reset_device(self):
|
||
|
pass
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|