diff options
author | Mark Felder <feld@FreeBSD.org> | 2019-08-15 15:34:41 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2019-08-15 15:34:41 -0500 |
commit | 6a3b1a526eb1a3ea49aca7914ed7ba8736c52059 (patch) | |
tree | bceec6a617a12f8f720bc1b3991523f11a4ca9f4 /test | |
parent | 4a5b0965a0d07d45bfc4687c80c752ec824457cc (diff) | |
download | pleroma-6a3b1a526eb1a3ea49aca7914ed7ba8736c52059.tar.gz pleroma-6a3b1a526eb1a3ea49aca7914ed7ba8736c52059.zip |
max_body_size -> max_body_length, as it should be
Diffstat (limited to 'test')
-rw-r--r-- | test/reverse_proxy_test.exs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/reverse_proxy_test.exs b/test/reverse_proxy_test.exs index f4b7d6add..3a83c4c48 100644 --- a/test/reverse_proxy_test.exs +++ b/test/reverse_proxy_test.exs @@ -108,11 +108,11 @@ defmodule Pleroma.ReverseProxyTest do end end - test "max_body_size returns error if streaming body more than that option", %{conn: conn} do + test "max_body_length returns error if streaming body more than that option", %{conn: conn} do stream_mock(3, true) assert capture_log(fn -> - ReverseProxy.call(conn, "/stream-bytes/50", max_body_size: 30) + ReverseProxy.call(conn, "/stream-bytes/50", max_body_length: 30) end) =~ "[warn] Elixir.Pleroma.ReverseProxy request to /stream-bytes/50 failed while reading/chunking: :body_too_large" end |