fix crate name change

This commit is contained in:
HouXiaoxuan
2023-12-17 18:52:49 +08:00
parent 7389d4124a
commit 64fbfd178c

View File

@@ -8,7 +8,7 @@ fn test_hash() {
hasher.update(String::from("hello world"));
let result = format!("{:x}", hasher.finalize());
println!("{}", result);
println!("{}", mini_git::utils::util::calc_hash(&String::from("hello world")));
println!("{}", mit::utils::util::calc_hash(&String::from("hello world")));
}
#[test]