cargo fmt
Some checks failed
Rust/spacepackets/pipeline/head There was a failure building this commit
Rust/spacepackets/pipeline/pr-main There was a failure building this commit

This commit is contained in:
Robin Müller 2023-12-06 17:06:30 +01:00
parent 56c3b7474d
commit 90cca0fd9e
Signed by: muellerr
GPG Key ID: A649FB78196E3849

View File

@ -369,9 +369,9 @@ impl PartialEq<FinishedPduCreator<'_>> for FinishedPduReader<'_> {
&& self.file_status == other.file_status
&& self.fault_location == other.fault_location
&& self
.fs_responses_iter()
.zip(other.filestore_responses().iter())
.all(|(a, b)| a == *b)
.fs_responses_iter()
.zip(other.filestore_responses().iter())
.all(|(a, b)| a == *b)
}
}