Skip to content

Commit

Permalink
try using tempfile to fix failing windows tests
Browse files Browse the repository at this point in the history
  • Loading branch information
roeap committed Oct 19, 2022
1 parent e42743d commit 7cfcf5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/src/operations/create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ mod tests {

#[tokio::test]
async fn test_create_table_save_mode() {
let tmp_dir = tempdir::TempDir::new("").unwrap();
let tmp_dir = tempfile::tempdir().unwrap();

let schema = get_delta_schema();
let table = CreateBuilder::new()
Expand Down

0 comments on commit 7cfcf5b

Please sign in to comment.