aboutsummaryrefslogtreecommitdiffstats
path: root/test/metrics_SUITE.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2019-10-03 15:42:58 +0200
committerLoïc Hoguin <[email protected]>2019-10-03 16:04:17 +0200
commit1ba48c58b1462fb9d9d8c4d9a43878679aea8eb7 (patch)
tree989759af4f9793b7af742b33c47f1d20d4d550df /test/metrics_SUITE.erl
parent57badc9082f4052f15bc3a3a432b1cfcee03c745 (diff)
downloadcowboy-1ba48c58b1462fb9d9d8c4d9a43878679aea8eb7.tar.gz
cowboy-1ba48c58b1462fb9d9d8c4d9a43878679aea8eb7.tar.bz2
cowboy-1ba48c58b1462fb9d9d8c4d9a43878679aea8eb7.zip
Make stream_error early_error reasons consistent
Now both HTTP/1.1 and HTTP/2 follow the documented format. HTTP/1.1 was including an extra element containing the StreamID before, which was unnecessary because it is also given as argument to the callback. HTTP/2 early_error will now include headers in its PartialReq.
Diffstat (limited to 'test/metrics_SUITE.erl')
-rw-r--r--test/metrics_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/metrics_SUITE.erl b/test/metrics_SUITE.erl
index d9ff7ea..971dd16 100644
--- a/test/metrics_SUITE.erl
+++ b/test/metrics_SUITE.erl
@@ -314,7 +314,7 @@ do_early_error(Config) ->
ref := _,
pid := From,
streamid := 1,
- reason := {stream_error, 1, protocol_error, _},
+ reason := {stream_error, protocol_error, _},
partial_req := #{},
resp_status := 400,
resp_headers := ExpectedRespHeaders,