Use recursive directory creation in query test

This commit is contained in:
Puneet Dixit 2026-05-22 07:34:14 +05:30
parent b4057529a1
commit c052abfa6f
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ fn interactive_query_accepts_existing_path() {
let data_dir = tempfile::tempdir().unwrap();
let target_parent = tempfile::tempdir().unwrap();
let target = target_parent.path().join("project");
std::fs::create_dir(&target).unwrap();
std::fs::create_dir_all(&target).unwrap();
let expected = target.to_string_lossy();