about summary refs log tree commit diff
path: root/tvix/store/src/tests
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2023-03-10T11·21+0100
committerclbot <clbot@tvl.fyi>2023-03-10T12·13+0000
commitb3d6e70909eaa691d98f75a58e2912e59f3536f7 (patch)
tree14b97c7f27d8f71ed7bd455cc93bbbbee90f796c /tvix/store/src/tests
parente716bd09579208f17c016bb265fc92bacc1b1216 (diff)
refactor(tvix/store): impl Default for MemoryChunkService r/5942
Change-Id: If1ceb870e9e5d03b651923a3a786350a8663e990
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8236
Autosubmit: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'tvix/store/src/tests')
-rw-r--r--tvix/store/src/tests/utils.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/tests/utils.rs b/tvix/store/src/tests/utils.rs
index 6cf888c9d6..0a4f5afb76 100644
--- a/tvix/store/src/tests/utils.rs
+++ b/tvix/store/src/tests/utils.rs
@@ -10,7 +10,7 @@ pub fn gen_blob_service() -> impl BlobService + Send + Sync + Clone + 'static {
 }
 
 pub fn gen_chunk_service() -> impl ChunkService + Clone {
-    MemoryChunkService::new()
+    MemoryChunkService::default()
 }
 
 pub fn gen_directory_service() -> impl DirectoryService + Send + Sync + Clone + 'static {