about summary refs log tree commit diff
path: root/kittybox-rs/src/media/storage/file.rs
diff options
context:
space:
mode:
Diffstat (limited to 'kittybox-rs/src/media/storage/file.rs')
-rw-r--r--kittybox-rs/src/media/storage/file.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/kittybox-rs/src/media/storage/file.rs b/kittybox-rs/src/media/storage/file.rs
index 6d7068b..cb9cadb 100644
--- a/kittybox-rs/src/media/storage/file.rs
+++ b/kittybox-rs/src/media/storage/file.rs
@@ -259,7 +259,7 @@ mod tests {
     #[tokio::test]
     #[tracing_test::traced_test]
     async fn test_ranges() {
-        let tempdir = tempdir::TempDir::new("file").expect("Failed to create tempdir");
+        let tempdir = tempfile::tempdir().expect("Failed to create tempdir");
         let store = FileStore::new(tempdir.path());
 
         let file: &[u8] = include_bytes!("./file.rs");
@@ -370,7 +370,7 @@ mod tests {
     #[tokio::test]
     #[tracing_test::traced_test]
     async fn test_streaming_read_write() {
-        let tempdir = tempdir::TempDir::new("file").expect("Failed to create tempdir");
+        let tempdir = tempfile::tempdir().expect("Failed to create tempdir");
         let store = FileStore::new(tempdir.path());
 
         let file: &[u8] = include_bytes!("./file.rs");