about summary refs log tree commit diff
path: root/tvix/store
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/store')
-rw-r--r--tvix/store/src/tests/nar_renderer.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/tvix/store/src/tests/nar_renderer.rs b/tvix/store/src/tests/nar_renderer.rs
index f13107b1e4..198df0083c 100644
--- a/tvix/store/src/tests/nar_renderer.rs
+++ b/tvix/store/src/tests/nar_renderer.rs
@@ -29,8 +29,7 @@ fn single_symlink() {
     assert_eq!(buf, NAR_CONTENTS_SYMLINK.to_vec());
 }
 
-/// Make sure the NARRenderer fails if the blob size in the proto node doesn't
-/// match what's in the store.
+/// Make sure the NARRenderer fails if a referred blob doesn't exist.
 #[test]
 fn single_file_missing_blob() {
     let renderer = NARRenderer::new(gen_blob_service(), gen_directory_service());