@@ -18,7 +18,7 @@ func HttpHeaderFieldsTestGroup() *TestGroup {
1818
1919 tg .AddTestCase (NewTestCase (
2020 "Sends a HEADERS frame that contains the header field name in uppercase letters" ,
21- "the endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
21+ "The endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
2222 func (ctx * Context ) (expected []Result , actual Result ) {
2323 http2Conn := CreateHttp2Conn (ctx , true )
2424 defer http2Conn .conn .Close ()
@@ -56,7 +56,7 @@ func PseudoHeaderFieldsTestGroup() *TestGroup {
5656
5757 tg .AddTestCase (NewTestCase (
5858 "Sends a HEADERS frame that contains the pseudo-header field defined for response" ,
59- "the endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
59+ "The endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
6060 func (ctx * Context ) (expected []Result , actual Result ) {
6161 http2Conn := CreateHttp2Conn (ctx , true )
6262 defer http2Conn .conn .Close ()
@@ -83,7 +83,7 @@ func PseudoHeaderFieldsTestGroup() *TestGroup {
8383
8484 tg .AddTestCase (NewTestCase (
8585 "Sends a HEADERS frame that contains the invalid pseudo-header field" ,
86- "the endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
86+ "The endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
8787 func (ctx * Context ) (expected []Result , actual Result ) {
8888 http2Conn := CreateHttp2Conn (ctx , true )
8989 defer http2Conn .conn .Close ()
@@ -110,7 +110,7 @@ func PseudoHeaderFieldsTestGroup() *TestGroup {
110110
111111 tg .AddTestCase (NewTestCase (
112112 "Sends a HEADERS frame that contains a pseudo-header field that appears in a header block after a regular header field" ,
113- "the endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
113+ "The endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
114114 func (ctx * Context ) (expected []Result , actual Result ) {
115115 http2Conn := CreateHttp2Conn (ctx , true )
116116 defer http2Conn .conn .Close ()
@@ -143,7 +143,7 @@ func ConnectionSpecificHeaderFieldsTestGroup() *TestGroup {
143143
144144 tg .AddTestCase (NewTestCase (
145145 "Sends a HEADERS frame that contains the connection-specific header field" ,
146- "the endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
146+ "The endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
147147 func (ctx * Context ) (expected []Result , actual Result ) {
148148 http2Conn := CreateHttp2Conn (ctx , true )
149149 defer http2Conn .conn .Close ()
@@ -170,7 +170,7 @@ func ConnectionSpecificHeaderFieldsTestGroup() *TestGroup {
170170
171171 tg .AddTestCase (NewTestCase (
172172 "Sends a HEADERS frame that contains the TE header field that contain any value other than \" trailers\" " ,
173- "the endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
173+ "The endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
174174 func (ctx * Context ) (expected []Result , actual Result ) {
175175 http2Conn := CreateHttp2Conn (ctx , true )
176176 defer http2Conn .conn .Close ()
@@ -204,7 +204,7 @@ func RequestPseudoHeaderFieldsTestGroup() *TestGroup {
204204
205205 tg .AddTestCase (NewTestCase (
206206 "Sends a HEADERS frame that is omitted mandatory pseudo-header fields" ,
207- "the endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
207+ "The endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
208208 func (ctx * Context ) (expected []Result , actual Result ) {
209209 http2Conn := CreateHttp2Conn (ctx , true )
210210 defer http2Conn .conn .Close ()
@@ -229,7 +229,7 @@ func RequestPseudoHeaderFieldsTestGroup() *TestGroup {
229229
230230 tg .AddTestCase (NewTestCase (
231231 "Sends a HEADERS frame containing more than one pseudo-header fields with the same name" ,
232- "the endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
232+ "The endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
233233 func (ctx * Context ) (expected []Result , actual Result ) {
234234 http2Conn := CreateHttp2Conn (ctx , true )
235235 defer http2Conn .conn .Close ()
@@ -265,7 +265,7 @@ func MalformedRequestsAndResponsesTestGroup() *TestGroup {
265265
266266 tg .AddTestCase (NewTestCase (
267267 "Sends a HEADERS frame that contains the \" content-length\" header field which does not equal the sum of the DATA frame payload lengths" ,
268- "the endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
268+ "The endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
269269 func (ctx * Context ) (expected []Result , actual Result ) {
270270 http2Conn := CreateHttp2Conn (ctx , true )
271271 defer http2Conn .conn .Close ()
@@ -293,7 +293,7 @@ func MalformedRequestsAndResponsesTestGroup() *TestGroup {
293293
294294 tg .AddTestCase (NewTestCase (
295295 "Sends a HEADERS frame that contains the \" content-length\" header field which does not equal the sum of the multiple DATA frame payload lengths" ,
296- "the endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
296+ "The endpoint MUST respond with a stream error of type PROTOCOL_ERROR." ,
297297 func (ctx * Context ) (expected []Result , actual Result ) {
298298 http2Conn := CreateHttp2Conn (ctx , true )
299299 defer http2Conn .conn .Close ()
0 commit comments