diff options
author | Florian Klink <flokli@flokli.de> | 2024-03-27T11·22+0100 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2024-03-28T07·02+0000 |
commit | 93dc5df957129b48e95c92c5c31bca3da5488208 (patch) | |
tree | b85c05f185ebe3178f71a53aaed706737ae228b2 /tvix/store/src/pathinfoservice | |
parent | bfc5b209a68d8668939bc20b89b9ecd7dd6b6b6d (diff) |
refactor(tvix/store/tests/fixtures): use [u8; 20] r/7787
This makes the fixture more use-able when interacting with the trait, the Bytes are only useful for the gRPC version. Change-Id: Iaaea1adc6df18491f236a28c4343f5b4ee5fcfd3 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11271 Reviewed-by: Connor Brewster <cbrewster@hey.com> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/store/src/pathinfoservice')
-rw-r--r-- | tvix/store/src/pathinfoservice/grpc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/pathinfoservice/grpc.rs b/tvix/store/src/pathinfoservice/grpc.rs index 4e15a5bb0b5b..17d202094a11 100644 --- a/tvix/store/src/pathinfoservice/grpc.rs +++ b/tvix/store/src/pathinfoservice/grpc.rs @@ -195,7 +195,7 @@ mod tests { }; let path_info = grpc_client - .get(fixtures::DUMMY_OUTPUT_HASH.to_vec().try_into().unwrap()) + .get(fixtures::DUMMY_OUTPUT_HASH) .await .expect("must not be error"); |