mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-22 05:10:56 +00:00
fix: improve debug writing in tests
[no changelog]
This commit is contained in:
parent
e22a141788
commit
5a069d8f8c
@ -1042,12 +1042,12 @@ class SessionDebugWrapper(Session):
|
|||||||
return self._session.id
|
return self._session.id
|
||||||
|
|
||||||
def _write(self, msg: t.Any) -> None:
|
def _write(self, msg: t.Any) -> None:
|
||||||
print("writing message:", type(msg))
|
print("writing message:", msg.__class__.__name__)
|
||||||
self._session._write(self._filter_message(msg))
|
self._session._write(self._filter_message(msg))
|
||||||
|
|
||||||
def _read(self) -> t.Any:
|
def _read(self) -> t.Any:
|
||||||
resp = self._filter_message(self._session._read())
|
resp = self._filter_message(self._session._read())
|
||||||
print("reading message:", type(resp))
|
print("reading message:", resp.__class__.__name__)
|
||||||
if self.actual_responses is not None:
|
if self.actual_responses is not None:
|
||||||
self.actual_responses.append(resp)
|
self.actual_responses.append(resp)
|
||||||
return resp
|
return resp
|
||||||
|
Loading…
Reference in New Issue
Block a user