diff options
author | Loïc Hoguin <[email protected]> | 2018-06-03 21:11:28 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2018-06-03 21:11:28 +0200 |
commit | 1be0151ec7b6a98064e648d5598f56cbdec65dc7 (patch) | |
tree | 48cab796ea085c658d799b8d10dbc638d9e43934 /test | |
parent | 34307a584149abbf0b2e5b33beb2fca4c585b0d1 (diff) | |
download | gun-1be0151ec7b6a98064e648d5598f56cbdec65dc7.tar.gz gun-1be0151ec7b6a98064e648d5598f56cbdec65dc7.tar.bz2 gun-1be0151ec7b6a98064e648d5598f56cbdec65dc7.zip |
Rename gun_data and gun_sse to gun_data_h and gun_sse_h
Diffstat (limited to 'test')
-rw-r--r-- | test/sse_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sse_SUITE.erl b/test/sse_SUITE.erl index b218fa2..21180be 100644 --- a/test/sse_SUITE.erl +++ b/test/sse_SUITE.erl @@ -22,7 +22,7 @@ all() -> http(_) -> {ok, Pid} = gun:open("sse.now.sh", 443, #{ protocols => [http], - http_opts => #{content_handlers => [gun_sse, gun_data]} + http_opts => #{content_handlers => [gun_sse_h, gun_data_h]} }), {ok, http} = gun:await_up(Pid), common(Pid). @@ -30,7 +30,7 @@ http(_) -> http2(_) -> {ok, Pid} = gun:open("sse.now.sh", 443, #{ protocols => [http2], - http2_opts => #{content_handlers => [gun_sse, gun_data]} + http2_opts => #{content_handlers => [gun_sse_h, gun_data_h]} }), {ok, http2} = gun:await_up(Pid), common(Pid). |