Skip to content

Commit 5adc97d

Browse files
committed
Update tests.
1 parent fcfb87d commit 5adc97d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/common/http.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe("http", () => {
1919
const httpError = new HttpError(message, HttpCode.BadRequest)
2020

2121
expect(httpError.message).toBe(message)
22-
expect(httpError.status).toBe(400)
22+
expect(httpError.statusCode).toBe(400)
2323
expect(httpError.details).toBeUndefined()
2424
})
2525
it("should have details if provided", () => {

0 commit comments

Comments
 (0)