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]