diff options
author | Florian Klink <flokli@flokli.de> | 2023-08-19T15·16+0200 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-08-20T21·51+0000 |
commit | 3ffbcc6c8a9bca119248d4ffe00c24a903979e1a (patch) | |
tree | a97ffb415169c5a6affe60c4cd1bddcbc787c40f /tvix/store/src/blobservice/tests.rs | |
parent | bc852fa56f3ac4ea1d506a0296c27ecb91a7589d (diff) |
refactor(tvix/store): cargo clippy r/6500
Change-Id: I3a80560d036e7ed08036b5e9f0974080d1a30ded Reviewed-on: https://cl.tvl.fyi/c/depot/+/9096 Tested-by: BuildkiteCI Reviewed-by: raitobezarius <tvl@lahfa.xyz> Autosubmit: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix/store/src/blobservice/tests.rs')
-rw-r--r-- | tvix/store/src/blobservice/tests.rs | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/tvix/store/src/blobservice/tests.rs b/tvix/store/src/blobservice/tests.rs index cc43ce5b180a..ec7a618fab58 100644 --- a/tvix/store/src/blobservice/tests.rs +++ b/tvix/store/src/blobservice/tests.rs @@ -24,12 +24,9 @@ fn gen_sled_blob_service() -> impl BlobService { #[test_case(gen_memory_blob_service(); "memory")] #[test_case(gen_sled_blob_service(); "sled")] fn has_nonexistent_false(blob_service: impl BlobService) { - assert_eq!( - blob_service - .has(&fixtures::BLOB_A_DIGEST) - .expect("must not fail"), - false - ); + assert!(!blob_service + .has(&fixtures::BLOB_A_DIGEST) + .expect("must not fail")); } /// Trying to read a non-existing blob should return a None instead of a reader. @@ -62,9 +59,8 @@ fn put_has_get(blob_service: impl BlobService, blob_contents: &[u8], blob_digest assert_eq!(*blob_digest, digest, "returned digest must be correct"); - assert_eq!( + assert!( blob_service.has(blob_digest).expect("must not fail"), - true, "blob service should now have the blob" ); @@ -116,9 +112,7 @@ fn put_seek(blob_service: impl BlobService) { pos += buf.len() as u64; } // seek by 0 bytes, using SeekFrom::Start. - let p = r - .seek(io::SeekFrom::Start(pos as u64)) - .expect("must not fail"); + let p = r.seek(io::SeekFrom::Start(pos)).expect("must not fail"); assert_eq!(pos, p); // read the next 10 bytes, they must match the data in the fixture. @@ -136,9 +130,7 @@ fn put_seek(blob_service: impl BlobService) { } // seek by 5 bytes, using SeekFrom::Start. - let p = r - .seek(io::SeekFrom::Start(pos as u64 + 5)) - .expect("must not fail"); + let p = r.seek(io::SeekFrom::Start(pos + 5)).expect("must not fail"); pos += 5; assert_eq!(pos, p); |