Remove an useless mut

This commit is contained in:
Rodolphe Bréard 2024-02-17 16:49:50 +01:00
parent 65796a2c91
commit a553821ed8

View file

@ -289,7 +289,7 @@ mod tests {
#[test]
#[cfg(feature = "encryption")]
fn get_latest_ikm_empty() {
let mut lst = InputKeyMaterialList::new();
let lst = InputKeyMaterialList::new();
let res = lst.get_latest_ikm();
assert!(res.is_err());
}