mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
http3: change status codes to const (#3683)
Signed-off-by: Avi Rosenberg <avrumi96@gmail.com>
This commit is contained in:
parent
3f9d8feab2
commit
7b2c69451e
4 changed files with 8 additions and 8 deletions
|
@ -110,8 +110,8 @@ var _ = Describe("Response Writer", func() {
|
|||
})
|
||||
|
||||
It("does not WriteHeader() twice", func() {
|
||||
rw.WriteHeader(200)
|
||||
rw.WriteHeader(500)
|
||||
rw.WriteHeader(http.StatusOK)
|
||||
rw.WriteHeader(http.StatusInternalServerError)
|
||||
fields := decodeHeader(strBuf)
|
||||
Expect(fields).To(HaveLen(1))
|
||||
Expect(fields).To(HaveKeyWithValue(":status", []string{"200"}))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue