2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-15 15:22:22 +00:00

master_index: fix inconsistent length blob length in test

Two blobs with the same hash must always have the same content length.
This commit is contained in:
Michael Eischer 2023-08-19 20:04:22 +02:00
parent e60c5b2d7f
commit 2bec99dc6f

View File

@ -46,6 +46,7 @@ func TestMasterIndex(t *testing.T) {
BlobHandle: bhInIdx12,
Length: uint(crypto.CiphertextLength(123)),
Offset: 110,
UncompressedLength: 80,
},
}
@ -116,7 +117,7 @@ func TestMasterIndex(t *testing.T) {
size, found = mIdx.LookupSize(bhInIdx12)
rtest.Equals(t, true, found)
rtest.Equals(t, uint(123), size)
rtest.Equals(t, uint(80), size)
// test not in index
found = mIdx.Has(restic.BlobHandle{ID: restic.NewRandomID(), Type: restic.TreeBlob})