2 parents c20839a + 026ba7c commit b4792c7Copy full SHA for b4792c7
1 file changed
stdlib/tests/stdlib_tests.rs
@@ -1153,14 +1153,5 @@ fn test_ai_generate_text() {
1153
}
1154
1155
#[test]
1156
-fn test_tar_dir_error_path() {
1157
- let temp_dir = std::env::temp_dir().join("techscript_tar_error_test");
1158
- std::fs::create_dir_all(&temp_dir).ok();
1159
-
1160
- let dest_file = temp_dir.join("archive.tar");
1161
- let result =
1162
- techscript_stdlib::compress::tar_dir("/non/existent/path/for/sure", &dest_file.to_string_lossy());
1163
- assert!(result.is_err());
1164
1165
- std::fs::remove_dir_all(&temp_dir).ok();
1166
0 commit comments