Skip to content

Commit

Permalink
expect the correct value
Browse files Browse the repository at this point in the history
  • Loading branch information
mariayord committed Jan 30, 2024
1 parent b815dfa commit f93b3a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/api/api.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ describe('AuditLogService API', () => {
const {
data: { value: sequence }
} = await GET('/api/getSequence()', { auth: ALICE })
expect(sequence).toEqual(['request succeeded', 'audit log logged'])
expect(sequence).toEqual(['audit log logged', 'request succeeded'])
expect(_logs.length).toBe(1)
expect(_logs).toContainMatchObject({ user: 'alice', bar: 'baz' })
})
Expand Down

0 comments on commit f93b3a6

Please sign in to comment.