Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
LiranCohen committed May 15, 2024
1 parent 692cb54 commit 2fdf3dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/tests/record.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2713,7 +2713,7 @@ describe('Record', () => {
});
expect(readResultFromAlice.status.code).to.equal(200);
expect(readResultFromAlice.record).to.exist;
const readRecord = readResultFromAlice.record;
const readRecord = readResultFromAlice.record;

// Attempts to store the record without signing it, which should fail.
let { status: storeRecordStatus } = await readRecord.store();
Expand Down

0 comments on commit 2fdf3dd

Please sign in to comment.