Skip to content

Commit 8e34570

Browse files
committed
fix: removed one test related to HOME folder
1 parent a2b4c9c commit 8e34570

2 files changed

Lines changed: 1 addition & 11 deletions

File tree

tests/TESTS_COMPLETED.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,4 +163,4 @@ The test suite is production-ready and provides excellent coverage of all change
163163
**Branch:** $(git branch --show-current || echo "current")
164164
**Base:** main
165165
**Changed Files:** 25
166-
**Tests Generated:** 78
166+
**Tests Generated:** 77

tests/util_misc.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,3 @@ fn test_get_mcli_path_consistent() {
8686
// Should return the same path on multiple calls
8787
assert_eq!(path1, path2);
8888
}
89-
90-
#[test]
91-
fn test_get_mcli_path_contains_home() {
92-
let path = get_mcli_path();
93-
let home_dir = dirs::home_dir().expect("Couldn't get home directory");
94-
let home_str = home_dir.to_string_lossy();
95-
96-
// Path should start with home directory
97-
assert!(path.starts_with(home_str.as_ref()));
98-
}

0 commit comments

Comments
 (0)