Skip to content

Commit

Permalink
fix checksum
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcrane committed Sep 11, 2024
1 parent a1288fa commit 89047dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion LeedsPrototypeTests/samples/10315s-add-jpg/10315.METS.xml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
<premis:objectCharacteristics>
<premis:fixity>
<premis:messageDigestAlgorithm>sha256</premis:messageDigestAlgorithm>
<premis:messageDigest>e00021d2337436e4cd338ab3ae77adb2f5def2a30cd303f35ad419568f9b9e63</premis:messageDigest>
<premis:messageDigest>5d235e69c795ec73fd45ed5eb9f75be7f0075abccd4ee0b622bfc3c898379710</premis:messageDigest>
</premis:fixity>
<premis:size>135782</premis:size>
<premis:format>
Expand Down
1 change: 1 addition & 0 deletions LeedsPrototypeTests/tests/exporting.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ test.describe('Export an existing Digital Object and make changes to it, then cr
expect(exportDeposit.files).toMatch(/s3:\/\/.*/);
console.log("The files for " + digitalObjectUri + " have been placed under " + exportDeposit.files);


const s3Client = getS3Client();
await listKeys(s3Client, exportDeposit.files);

Expand Down
5 changes: 1 addition & 4 deletions LeedsPrototypeTests/tests/quick-prep.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,7 @@ export async function createDigitalObject(request: APIRequestContext, baseURL: s
console.log("Execute the diff in one operation, without fetching it first (see RFC)")
// This is a shortcut, a variation on the mechanism shown in create-deposit.spec.ts
const executeImportJobReq = await request.post(newDeposit['@id'] + '/importJobs', {
data: {
"@id": newDeposit['@id'] + '/importJobs/diff',
type: 'ImportJob'
}
data: { "@id": newDeposit['@id'] + '/importJobs/diff' }
});
let importJobResult = await executeImportJobReq.json();
await expect.poll(async () => {
Expand Down

0 comments on commit 89047dd

Please sign in to comment.