fix test
Some checks failed
Rust/sat-rs/pipeline/pr-main There was a failure building this commit

This commit is contained in:
Robin Müller 2024-02-28 11:53:39 +01:00
parent 0647abc9c6
commit ee35d04e7b
Signed by: muellerr
GPG Key ID: A649FB78196E3849

View File

@ -668,7 +668,7 @@ pub mod std_mod {
self.receiver.try_recv().map_err(|e| match e {
cb::TryRecvError::Empty => TryRecvTmtcError::Empty,
cb::TryRecvError::Disconnected => TryRecvTmtcError::Tmtc(EcssTmtcError::from(
GenericReceiveError::TxDisconnected(Some(self.id())),
GenericReceiveError::TxDisconnected(Some(self.channel_id())),
)),
})
}