From aa703559de3acce0bf2776559fc50c9836a22a30 Mon Sep 17 00:00:00 2001 From: JG Date: Wed, 1 Jun 2022 07:44:15 +0100 Subject: [PATCH] rubocop --- spec/requests/users_controller_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/requests/users_controller_spec.rb b/spec/requests/users_controller_spec.rb index 01b0d29b1..56112974b 100644 --- a/spec/requests/users_controller_spec.rb +++ b/spec/requests/users_controller_spec.rb @@ -1614,7 +1614,7 @@ RSpec.describe UsersController, type: :request do context "when organisation id is present in params in there are multiple organisations in the database" do it "has only specific organisation name in the dropdown" do - get "/users/new", params: {organisation_id: user.organisation.id} + get "/users/new", params: { organisation_id: user.organisation.id } expect(page).to have_select("user-organisation-id-field", options: [user.organisation.name]) end end