From d795a0ad0d7cc17a81a616dcafd59a250ced66d9 Mon Sep 17 00:00:00 2001 From: Meredith Lancaster Date: Tue, 9 Dec 2025 08:32:31 -0800 Subject: [PATCH] linter fix Signed-off-by: Meredith Lancaster --- packages/attest/__tests__/artifactMetadata.test.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/packages/attest/__tests__/artifactMetadata.test.ts b/packages/attest/__tests__/artifactMetadata.test.ts index 0b578945..c447ba55 100644 --- a/packages/attest/__tests__/artifactMetadata.test.ts +++ b/packages/attest/__tests__/artifactMetadata.test.ts @@ -52,10 +52,7 @@ describe('createStorageRecord', () => { }) it('persists the storage record', async () => { - await expect(createStorageRecord(options)).resolves.toEqual([ - 123, - 456 - ]) + await expect(createStorageRecord(options)).resolves.toEqual([123, 456]) }) })