aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/test/http_format_SUITE.erl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2017-11-01 12:01:06 +0100
committerIngela Anderton Andin <[email protected]>2017-11-01 12:01:06 +0100
commit61a64986b805ac8b140e25cb4caa4ad5430837a0 (patch)
tree5b486e77148a1647acc1a4fb28ee346c64b453d2 /lib/inets/test/http_format_SUITE.erl
parent850375f7de788d9d3b3252adb65b3491d5d10efc (diff)
parentd7a5a8a61f496708133863391f2a67a0ea47bdc7 (diff)
downloadotp-61a64986b805ac8b140e25cb4caa4ad5430837a0.tar.gz
otp-61a64986b805ac8b140e25cb4caa4ad5430837a0.tar.bz2
otp-61a64986b805ac8b140e25cb4caa4ad5430837a0.zip
Merge branch 'ingela/inets/httpd-location/OTP-14716' into maint
* ingela/inets/httpd-location/OTP-14716: inets: httpd - do not hardcode 302 status for location
Diffstat (limited to 'lib/inets/test/http_format_SUITE.erl')
-rw-r--r--lib/inets/test/http_format_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/inets/test/http_format_SUITE.erl b/lib/inets/test/http_format_SUITE.erl
index 4e10a97f58..9a13ed3d17 100644
--- a/lib/inets/test/http_format_SUITE.erl
+++ b/lib/inets/test/http_format_SUITE.erl
@@ -535,7 +535,7 @@ esi_parse_headers(Config) when is_list(Config) ->
{"location","http://foo.bar.se"}], 302} =
httpd_esi:handle_headers(Headers2),
- {proceed,"/foo/bar.html"} =
+ {ok,[{"location","/foo/bar.html"}], 302} =
httpd_esi:handle_headers("location:/foo/bar.html\r\n").
%%--------------------------------------------------------------------