refactor(tvix/store): remove useless clone in test

Change-Id: If62887cbc3338110cb7c815ec2ee2160fae04353
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8111
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Reviewed-by: raitobezarius <tvl@lahfa.xyz>
This commit is contained in:
Florian Klink 2023-02-15 22:11:45 +02:00 committed by flokli
parent 80f68bf828
commit 95aec51b2c

View file

@ -201,7 +201,7 @@ fn validate_references() {
signatures: vec![],
reference_names: vec![format!("/nix/store/{}", DUMMY_NAME)],
}),
..path_info.clone()
..path_info
};
assert!(path_info_with_narinfo.validate().is_ok());
}