mirror of
https://github.com/discourse/discourse.git
synced 2025-09-04 08:47:37 +08:00
Add guard for nil
in our RateLimiter
.
This commit is contained in:
parent
5d9f9c2614
commit
81ca3677f7
2 changed files with 5 additions and 2 deletions
|
@ -96,7 +96,7 @@ describe RateLimiter do
|
|||
context 'max is less than or equal to zero' do
|
||||
|
||||
it 'should raise the right error' do
|
||||
[-1, 0].each do |max|
|
||||
[-1, 0, nil].each do |max|
|
||||
expect do
|
||||
RateLimiter.new(user, "a", max, 60).performed!
|
||||
end.to raise_error(RateLimiter::LimitExceeded)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue