Coverage Update #47

Merged
muellerr merged 35 commits from coverage-update into main 2023-12-06 18:05:57 +01:00
24 changed files with 2355 additions and 696 deletions
Showing only changes of commit 90cca0fd9e - Show all commits

View File

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