Skip to content

Commit

Permalink
chore: fixed unit test after last change
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderPostma committed Feb 6, 2025
1 parent f8d7397 commit 986a7d9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ describe('Status List VC handling', () => {
})

expect(result.status?.status_list.uri).toBe('http://localhost/test/1')
expect(result.status?.status_list.idx).toBeGreaterThan(10000)
expect(result.status?.status_list.idx).toBeGreaterThan(1)
})

it('should update existing status in SD-JWT credential', async () => {
Expand All @@ -359,7 +359,7 @@ describe('Status List VC handling', () => {
],
})

expect(result.status?.status_list.idx).toBeGreaterThan(10000)
expect(result.status?.status_list.idx).toBe(10)
})
})

Expand Down

0 comments on commit 986a7d9

Please sign in to comment.