Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Lenakh97 committed Jul 2, 2024
1 parent 060e9e3 commit b3bef8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e-tests/e2eTest.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ void describe('e2e-tests', () => {
}
const responseBody = await req.json()
assert.equal(req.status, 400)
assert.equal(req.headers.get('Content-Type'), '')
assert.equal(req.headers.get('Content-Type'), 'application/problem+json')
assert.deepEqual(responseBody, expectedBody)
})
void it('should return a problem details message that describes the reason for the 400 error when not valid iccid', async () => {
Expand All @@ -60,7 +60,7 @@ void describe('e2e-tests', () => {
}
const responseBody = await req.json()
assert.equal(req.status, 400)
assert.equal(req.headers.get('Content-Type'), '')
assert.equal(req.headers.get('Content-Type'), 'application/problem+json')
assert.deepEqual(responseBody, expectedBody)
})
void it('should return statusCode 409 and cache max-age=60 when the SIM information is not in DB', async () => {
Expand Down

0 comments on commit b3bef8e

Please sign in to comment.