Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zuston committed Jan 8, 2025
1 parent 1106339 commit f731d4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,7 @@ pub(crate) mod test {
use crate::runtime::manager::RuntimeManager;
use crate::storage::StorageService;
use crate::store::{Block, ResponseData};
use croaring::Treemap;
use croaring::{JvmLegacy, Treemap};
use dashmap::DashMap;

#[test]
Expand Down Expand Up @@ -1174,7 +1174,7 @@ pub(crate) mod test {
})
.expect("TODO: panic message");

let deserialized = Treemap::deserialize(&data);
let deserialized = Treemap::deserialize::<JvmLegacy>(&data);
assert_eq!(deserialized, Treemap::from_iter(vec![123, 124]));
}

Expand Down

0 comments on commit f731d4c

Please sign in to comment.