We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
test_replace_dataset
1 parent 1543ffb commit 68ca98fCopy full SHA for 68ca98f
1 file changed
rust/lance/src/dataset.rs
@@ -6081,7 +6081,8 @@ mod tests {
6081
.await
6082
.unwrap();
6083
6084
- ds.object_store().remove_dir_all(test_uri).await.unwrap();
+ let test_path = Path::from_filesystem_path(test_uri).unwrap();
6085
+ ds.object_store().remove_dir_all(test_path).await.unwrap();
6086
6087
let ds2 = InsertBuilder::new(test_uri)
6088
.execute(vec![data2.clone()])
0 commit comments