1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-25 09:59:21 +02:00

allow to disable http/2 support

This commit is contained in:
Nikolay Kim
2018-03-16 08:48:44 -07:00
parent b16f2d5f05
commit 4096089a3f
5 changed files with 31 additions and 15 deletions

View File

@ -742,8 +742,8 @@ fn test_h2() {
})
})
});
let _res = core.run(tcp);
// assert_eq!(_res.unwrap(), Bytes::from_static(STR.as_ref()));
let res = core.run(tcp);
assert_eq!(res.unwrap(), Bytes::from_static(STR.as_ref()));
}
#[test]