mirror of
https://github.com/discourse/discourse.git
synced 2025-05-31 21:45:26 +08:00
correct exception handling, always do to_i in array
This commit is contained in:
@ -30,6 +30,11 @@ RSpec.describe ListController do
|
||||
expect(response.status).to eq(400)
|
||||
end
|
||||
|
||||
it "returns 200 for legit requests" do
|
||||
get "/latest.json?exclude_category_ids%5B%5D=69&exclude_category_ids%5B%5D=70&no_definitions=true&no_subcategories=false&page=1&_=1534296100767"
|
||||
expect(response.status).to eq(200)
|
||||
end
|
||||
|
||||
it "doesn't throw an error with page params as an array" do
|
||||
get "/#{Discourse.anonymous_filters[1]}", params: { page: ['7'] }
|
||||
expect(response.status).to eq(200)
|
||||
|
Reference in New Issue
Block a user