Skip to content

Commit 132326d

Browse files
Fix unit test
1 parent 4334697 commit 132326d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/datastore/src/__test__/letter-repository.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ describe("LetterRepository", () => {
568568
);
569569
expect(Date.parse(result.updatedAt)).toBeLessThan(Date.now());
570570
expect(result.createdAt).toBe(existingLetter.createdAt);
571-
expect(result.createdAt).toBe(result.supplierStatusSk);
571+
expect(result.supplierStatusSk).toBe(existingLetter.supplierStatusSk);
572572
expect(result.ttl).toBe(existingLetter.ttl);
573573
});
574574
});

0 commit comments

Comments
 (0)