diff options
| author | Guillaume | 2017-11-08 15:03:36 +0100 |
|---|---|---|
| committer | Guillaume | 2017-11-08 15:03:36 +0100 |
| commit | 5fee40024adbdbcfc858170019b327a031b15848 (patch) | |
| tree | 8240919d73976375bb626f9245c76374f04142f8 | |
| parent | 3f8b085393351ed190cf071833d877dc5ea95946 (diff) | |
| download | chouette-core-5fee40024adbdbcfc858170019b327a031b15848.tar.bz2 | |
fix bad indentation
| -rw-r--r-- | spec/controllers/referentials_controller_spec.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/controllers/referentials_controller_spec.rb b/spec/controllers/referentials_controller_spec.rb index cc01727d1..fba063085 100644 --- a/spec/controllers/referentials_controller_spec.rb +++ b/spec/controllers/referentials_controller_spec.rb @@ -23,11 +23,11 @@ describe ReferentialsController, :type => :controller do end describe 'GET select_compliance_control_set' do - it 'gets compliance control set for current organisation' do - compliance_control_set = create(:compliance_control_set, organisation: @user.organisation) - create(:compliance_control_set) - get :select_compliance_control_set, referential_id: referential.id - expect(assigns[:compliance_control_sets]).to eq([compliance_control_set]) - end + it 'gets compliance control set for current organisation' do + compliance_control_set = create(:compliance_control_set, organisation: @user.organisation) + create(:compliance_control_set) + get :select_compliance_control_set, referential_id: referential.id + expect(assigns[:compliance_control_sets]).to eq([compliance_control_set]) end end +end |
