fix ci:
All checks were successful
CI/CD Pipeline / test (push) Successful in 34s

This commit is contained in:
philipp 2024-02-05 14:38:07 +01:00
parent 350b1e5ebb
commit 09be03e630

View File

@ -46,8 +46,9 @@ fn fetch(url: &str) -> Result<String, Error> {
#[cfg(test)] #[cfg(test)]
fn fetch(url: &str) -> Result<String, Error> { fn fetch(url: &str) -> Result<String, Error> {
use std::{ use std::{
collections::hash_map::DefaultHasher,
fs, fs,
hash::{DefaultHasher, Hash, Hasher}, hash::{Hash, Hasher},
}; };
let mut hasher = DefaultHasher::new(); let mut hasher = DefaultHasher::new();