bug fixes, updated tests

This commit is contained in:
Anton-4 2021-08-31 19:54:48 +02:00
parent 3c858cff96
commit 6d6ae5d5c0
19 changed files with 1074 additions and 974 deletions

View file

@ -589,9 +589,10 @@ impl IdentIds {
)
}
}
None => {
Err(format!("Tried to update key in IdentIds ({:?}) but I could not find the key ({}).", self.by_ident, old_ident_name))
}
None => Err(format!(
"Tried to update key in IdentIds ({:?}) but I could not find the key ({}).",
self.by_ident, old_ident_name
)),
}
}