tests(http2): add bodies to parallel h2 tests
This commit is contained in:
@@ -23,18 +23,22 @@ macro_rules! t {
|
|||||||
c.push((
|
c.push((
|
||||||
__CReq {
|
__CReq {
|
||||||
uri: "/",
|
uri: "/",
|
||||||
|
body: vec![b'x'; 8192],
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
__CRes {
|
__CRes {
|
||||||
|
body: vec![b'x'; 8192],
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
));
|
));
|
||||||
s.push((
|
s.push((
|
||||||
__SReq {
|
__SReq {
|
||||||
uri: "/",
|
uri: "/",
|
||||||
|
body: vec![b'x'; 8192],
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
__SRes {
|
__SRes {
|
||||||
|
body: vec![b'x'; 8192],
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
));
|
));
|
||||||
|
|||||||
Reference in New Issue
Block a user