Skip to content

Commit

Permalink
getBlobId
Browse files Browse the repository at this point in the history
  • Loading branch information
snalli committed Dec 4, 2024
1 parent 523d56c commit 6ddc321
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -279,9 +279,9 @@ public void testListNamedBlobsWithStaleRecords() throws Exception {
Page<NamedBlobRecord> page;

// put blob Ready and list should return the blob
v1 = new NamedBlobRecord(account.getName(), container.getName(), blobName, "b1",
v1 = new NamedBlobRecord(account.getName(), container.getName(), blobName, getBlobId(account, container),
now + TimeUnit.HOURS.toMillis(1));
v1_other = new NamedBlobRecord(account.getName(), container.getName(), blobName + "-other", "b2",
v1_other = new NamedBlobRecord(account.getName(), container.getName(), blobName + "-other", getBlobId(account, container),
now + TimeUnit.HOURS.toMillis(1));
namedBlobDb.put(v1, NamedBlobState.READY, true).get();
NamedBlobRecord v1_get = namedBlobDb.get(account.getName(), container.getName(), blobName).get();
Expand Down

0 comments on commit 6ddc321

Please sign in to comment.