1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-11-18 15:41:17 +00:00

reenable actix-http test-ws

This commit is contained in:
Maksym Vorobiov 2020-02-18 23:04:47 +02:00 committed by Yuki Okushi
parent 77058ef779
commit ea28219d0f

View file

@ -81,9 +81,6 @@ async fn service(msg: ws::Frame) -> Result<ws::Message, Error> {
Ok(msg) Ok(msg)
} }
/*
Temporarily commented out due to dependency on actix-http-test
#[actix_rt::test] #[actix_rt::test]
async fn test_simple() { async fn test_simple() {
let ws_service = WsService::new(); let ws_service = WsService::new();
@ -195,5 +192,3 @@ async fn test_simple() {
assert!(ws_service.was_polled()); assert!(ws_service.was_polled());
} }
*/