Fix Rubocop offenses

This commit is contained in:
Sebastian Serth
2022-07-08 15:23:55 +02:00
parent ac453e841b
commit 5e9bf9141c
18 changed files with 87 additions and 87 deletions

View File

@ -10,13 +10,13 @@ describe ErrorTemplateAttributesController do
it 'gets index' do
get :index
expect(response.status).to eq(200)
expect(response).to have_http_status(:ok)
expect(assigns(:error_template_attributes)).not_to be_nil
end
it 'gets new' do
get :new
expect(response.status).to eq(200)
expect(response).to have_http_status(:ok)
end
it 'creates error_template_attribute' do
@ -26,12 +26,12 @@ describe ErrorTemplateAttributesController do
it 'shows error_template_attribute' do
get :show, params: {id: error_template_attribute}
expect(response.status).to eq(200)
expect(response).to have_http_status(:ok)
end
it 'gets edit' do
get :edit, params: {id: error_template_attribute}
expect(response.status).to eq(200)
expect(response).to have_http_status(:ok)
end
it 'updates error_template_attribute' do