diff options
author | Egor Kislitsyn <egor@kislitsyn.com> | 2019-11-13 18:07:53 +0700 |
---|---|---|
committer | Egor Kislitsyn <egor@kislitsyn.com> | 2019-11-13 18:07:53 +0700 |
commit | 72cf6a76f4064f226552802b201ba0902084c52a (patch) | |
tree | 6e6c277799d4ad7cb77badf73f5b3e371da38437 | |
parent | fb090b748ab7ec3740008017f419e210405e2633 (diff) | |
download | pleroma-72cf6a76f4064f226552802b201ba0902084c52a.tar.gz |
Fix random fails of the rate limiter tests
-rw-r--r-- | test/plugs/rate_limiter_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/plugs/rate_limiter_test.exs b/test/plugs/rate_limiter_test.exs index bacd621e1..49f63c424 100644 --- a/test/plugs/rate_limiter_test.exs +++ b/test/plugs/rate_limiter_test.exs @@ -25,7 +25,7 @@ defmodule Pleroma.Plugs.RateLimiterTest do test "it restricts based on config values" do limiter_name = :test_opts - scale = 60 + scale = 80 limit = 5 Pleroma.Config.put([:rate_limit, limiter_name], {scale, limit}) |