Skip to content

Commit 68ca98f

Browse files
authored
test: fix windows test_replace_dataset path handling (#3716)
1 parent 1543ffb commit 68ca98f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

rust/lance/src/dataset.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6081,7 +6081,8 @@ mod tests {
60816081
.await
60826082
.unwrap();
60836083

6084-
ds.object_store().remove_dir_all(test_uri).await.unwrap();
6084+
let test_path = Path::from_filesystem_path(test_uri).unwrap();
6085+
ds.object_store().remove_dir_all(test_path).await.unwrap();
60856086

60866087
let ds2 = InsertBuilder::new(test_uri)
60876088
.execute(vec![data2.clone()])

0 commit comments

Comments
 (0)