fix(tvix/nix-compat): don't box CAHash::Text

Change-Id: I31df3909bc21c9038f9fb831879e60e541242819
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9853
Tested-by: BuildkiteCI
Reviewed-by: flokli <flokli@flokli.de>
This commit is contained in:
edef 2023-10-27 10:53:46 +00:00
parent fdc2e90ef2
commit 99a61def17
3 changed files with 9 additions and 14 deletions

View file

@ -141,7 +141,7 @@ mod test {
"out".to_string(),
Output {
path: "".to_string(),
ca_hash: Some(CAHash::Text(Box::new([0; 32]))), // This is disallowed
ca_hash: Some(CAHash::Text([0; 32])), // This is disallowed
},
);