Skip to content

Commit

Permalink
Updates for rebase
Browse files Browse the repository at this point in the history
Signed-off-by: David Gilligan-Cook <dcook@imageworks.com>
  • Loading branch information
dcookspi committed Mar 8, 2024
1 parent c7fddba commit b213173
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions crates/spfs/src/runtime/storage_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit b213173

Please sign in to comment.