pinakes-core: fix hasher usage in tests

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ied03277d450e39299470667ef479c3526a6a6964
This commit is contained in:
raf 2026-03-19 23:57:48 +03:00
commit 54fffa3c96
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
3 changed files with 21 additions and 8 deletions

View file

@ -775,6 +775,7 @@ impl HostFunctions {
#[cfg(test)]
mod tests {
use pinakes_plugin_api::PluginContext;
use rustc_hash::FxHashMap;
use super::*;
@ -836,7 +837,7 @@ mod tests {
let mut context = PluginContext {
data_dir: "/tmp/data".into(),
cache_dir: "/tmp/cache".into(),
config: HashMap::new(),
config: FxHashMap::default(),
capabilities: Default::default(),
};