fix(core/database): test matches incorrect entry

[skip ci]
This commit is contained in:
Paul Makles
2023-06-03 17:15:43 +01:00
parent 3365a8e482
commit f5e6086d2a

View File

@@ -105,7 +105,7 @@ mod tests {
let fetched_strike = strikes
.into_iter()
.find(|strike| strike.id == strike.id)
.find(|entry| entry.id == strike.id)
.unwrap();
assert_eq!(fetched_strike, updated_strike);