diff --git a/crates/spfs/src/runtime/storage_test.rs b/crates/spfs/src/runtime/storage_test.rs index 322b814bf3..fabca9cd32 100644 --- a/crates/spfs/src/runtime/storage_test.rs +++ b/crates/spfs/src/runtime/storage_test.rs @@ -185,7 +185,7 @@ async fn test_storage_runtime_with_annotation(tmpdir: tempfile::TempDir) { .await .unwrap(), ); - let storage = Storage::new(repo); + let storage = Storage::new(repo).unwrap(); let limit: usize = 16 * 1024; let keep_runtime = false; @@ -236,7 +236,7 @@ async fn test_storage_runtime_add_annotations_list(tmpdir: tempfile::TempDir) { .await .unwrap(), ); - let storage = Storage::new(repo); + let storage = Storage::new(repo).unwrap(); let limit: usize = 16 * 1024; let keep_runtime = false; @@ -305,7 +305,7 @@ async fn test_storage_runtime_with_nested_annotation(tmpdir: tempfile::TempDir) repo.write_object(&platform.clone()).await.unwrap(); // put the platform into a runtime - let storage = Storage::new(repo); + let storage = Storage::new(repo).unwrap(); let keep_runtime = false; let live_layers = Vec::new(); let mut runtime = storage @@ -339,7 +339,7 @@ async fn test_storage_runtime_with_annotation_all(tmpdir: tempfile::TempDir) { .await .unwrap(), ); - let storage = Storage::new(repo); + let storage = Storage::new(repo).unwrap(); let limit: usize = 16 * 1024; let keep_runtime = false; @@ -424,7 +424,7 @@ async fn test_storage_runtime_with_nested_annotation_all(tmpdir: tempfile::TempD repo.write_object(&platform2.clone()).await.unwrap(); // finally set up the runtime - let storage = Storage::new(repo); + let storage = Storage::new(repo).unwrap(); let keep_runtime = false; let live_layers = Vec::new();