diff options
Diffstat (limited to 'test/http_SUITE.erl')
-rw-r--r-- | test/http_SUITE.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/http_SUITE.erl b/test/http_SUITE.erl index 21681be..c04c3d8 100644 --- a/test/http_SUITE.erl +++ b/test/http_SUITE.erl @@ -76,10 +76,10 @@ end_per_group(https, _Config) -> init_http_dispatch() -> [ - {["localhost"], [ - {["websocket"], websocket_handler, []}, - {["headers", "dupe"], http_handler, - [{headers, [{"Connection", "close"}]}]}, + {[<<"localhost">>], [ + {[<<"websocket">>], websocket_handler, []}, + {[<<"headers">>, <<"dupe">>], http_handler, + [{headers, [{<<"Connection">>, <<"close">>}]}]}, {[], http_handler, []} ]} ]. |