Fix test of statuses limit

This commit is contained in:
KMY 2023-09-26 18:23:38 +09:00
parent 60241d9b72
commit 8b8d49545f

View file

@ -19,7 +19,7 @@ describe Api::V1::Circles::StatusesController do
describe 'GET #index' do
it 'returns http success' do
get :show, params: { circle_id: circle.id, limit: 1 }
get :show, params: { circle_id: circle.id, limit: 5 }
expect(response).to have_http_status(200)
json = body_as_json