Forward desktop test fixes (#419)

* fixes clippy warnings for compilers until 2021-11-25

* fixes run_desktop_tests

* removes page_size
This commit is contained in:
kaczmarczyck
2021-11-30 11:07:17 +01:00
committed by GitHub
parent 8f96df53f2
commit 522e6079e3
10 changed files with 20 additions and 19 deletions

View File

@@ -709,7 +709,7 @@ impl<'a> Iterator for IterCredentials<'a> {
if !key::CREDENTIALS.contains(&key) {
continue;
}
let value = self.unwrap(handle.get_value(&self.store).ok())?;
let value = self.unwrap(handle.get_value(self.store).ok())?;
let credential = self.unwrap(deserialize_credential(&value))?;
return Some((key, credential));
}