Skip to content

Commit 01a4cd0

Browse files
committed
fix flaky test
1 parent 706af78 commit 01a4cd0

File tree

1 file changed

+2
-2
lines changed
  • rust/cubestore/cubestore/src/metastore

1 file changed

+2
-2
lines changed

rust/cubestore/cubestore/src/metastore/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6274,8 +6274,8 @@ mod tests {
62746274
.await
62756275
.unwrap();
62766276
assert_eq!(tables.len(), 0);
6277-
fs::remove_dir_all(config.local_dir()).unwrap();
6278-
fs::remove_dir_all(config.remote_dir()).unwrap();
6277+
let _ = fs::remove_dir_all(config.local_dir());
6278+
let _ = fs::remove_dir_all(config.remote_dir());
62796279
}
62806280
}
62816281

0 commit comments

Comments
 (0)