1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 23:48:12 +00:00

tests: fix warnings in test_msg_resetdevice_nobackup.py

This commit is contained in:
Pavol Rusnak 2018-10-04 18:04:21 +02:00
parent b4c5b996a1
commit 0f62c817d5
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -14,8 +14,6 @@
# You should have received a copy of the License along with this library.
# If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
import pytest
from trezorlib import messages as proto
from .common import TrezorTest
@ -41,7 +39,6 @@ class TestMsgResetDeviceNobackup(TrezorTest):
# Provide entropy
assert isinstance(ret, proto.EntropyRequest)
internal_entropy = self.client.debug.read_reset_entropy()
ret = self.client.call_raw(proto.EntropyAck(entropy=external_entropy))
assert isinstance(ret, proto.Success)