diff options
author | Florian Klink <flokli@flokli.de> | 2022-12-27T23·17+0100 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2022-12-28T10·58+0000 |
commit | 0c7e545fd061e9c2429eda8a89ba9b9d1a1c5212 (patch) | |
tree | 98c97f2fec86c8a12abd46f742949398bfc97902 /tvix/store | |
parent | f930c91086f4878d8864dc58f9e45e749b624cc0 (diff) |
chore(tvix/store): use DUMMY_DIGEST, too r/5519
Missed from cl/7649. Change-Id: Id2d382567f91cba9cdd792fe44bc0a83d040ec69 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7656 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'tvix/store')
-rw-r--r-- | tvix/store/src/proto.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/proto.rs b/tvix/store/src/proto.rs index a9d23bac3977..ccc3d5a3bf44 100644 --- a/tvix/store/src/proto.rs +++ b/tvix/store/src/proto.rs @@ -43,7 +43,7 @@ mod tests { let d = Directory { directories: vec![DirectoryNode { name: String::from("foo"), - digest: vec![], + digest: DUMMY_DIGEST.to_vec(), size: 0, }], ..Default::default() |