Browse Source

Fix rate limiter tests

tags/v1.1.4
Egor Kislitsyn 5 years ago
parent
commit
fc6e661672
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      test/plugs/rate_limiter_test.exs

+ 2
- 2
test/plugs/rate_limiter_test.exs View File

@@ -20,7 +20,7 @@ defmodule Pleroma.Plugs.RateLimiterTest do
end

test "it restricts by opts" do
scale = 100
scale = 1000
limit = 5

Pleroma.Config.put([:rate_limit, @limiter_name], {scale, limit})
@@ -64,7 +64,7 @@ defmodule Pleroma.Plugs.RateLimiterTest do
test "optional limits for authenticated users" do
Ecto.Adapters.SQL.Sandbox.checkout(Pleroma.Repo)

scale = 100
scale = 1000
limit = 5
Pleroma.Config.put([:rate_limit, @limiter_name], [{1, 10}, {scale, limit}])



Loading…
Cancel
Save