From 64fbfd178c2d0a0577440d6e3ccdd3b962b910b3 Mon Sep 17 00:00:00 2001 From: HouXiaoxuan Date: Sun, 17 Dec 2023 18:52:49 +0800 Subject: [PATCH] fix crate name change --- tests/test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test.rs b/tests/test.rs index e240b16..96e30ef 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -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]