diff options
Diffstat (limited to 'tvix')
-rw-r--r-- | tvix/store/src/tests/nar_renderer.rs | 3 |
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 f13107b1e48d..198df0083cc9 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()); |