pinakes-core: fix hasher usage in tests
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Ied03277d450e39299470667ef479c3526a6a6964
This commit is contained in:
parent
72f06a4f2a
commit
54fffa3c96
3 changed files with 21 additions and 8 deletions
|
|
@ -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(),
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue