2
0
Fork 0
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:
Guo Xiang Tan 2018-03-01 13:20:42 +08:00
parent 5d9f9c2614
commit 81ca3677f7
2 changed files with 5 additions and 2 deletions

View file

@ -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)