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

@ -12,7 +12,7 @@ describe ExternalUsersController do
before { get :index }
expect_assigns(users: ExternalUser.all)
expect_status(200)
expect_http_status(:ok)
expect_template(:index)
end
@ -20,7 +20,7 @@ describe ExternalUsersController do
before { get :show, params: {id: users.first.id} }
expect_assigns(user: ExternalUser)
expect_status(200)
expect_http_status(:ok)
expect_template(:show)
end
end