From 570d1bff4f8d298ceb1f2a6a75fa42b1dd473afa Mon Sep 17 00:00:00 2001 From: Kat Date: Fri, 7 Jun 2024 08:57:13 +0100 Subject: [PATCH] lint --- .../organisations_controller_rent_periods_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/requests/OrganisationsController/organisations_controller_rent_periods_spec.rb b/spec/requests/OrganisationsController/organisations_controller_rent_periods_spec.rb index fcc21bbbc..126a3a624 100644 --- a/spec/requests/OrganisationsController/organisations_controller_rent_periods_spec.rb +++ b/spec/requests/OrganisationsController/organisations_controller_rent_periods_spec.rb @@ -117,14 +117,14 @@ RSpec.describe OrganisationsController, type: :request do context "when a user creates a log with a certain rent period while another user is on the edit page" do let(:period_to_not_delete) { "4" } let(:period_to_create) { "5" } - let(:coordinator) { create(:user, :data_coordinator, organisation:)} + let(:coordinator) { create(:user, :data_coordinator, organisation:) } let(:params) do { "organisation": { name: organisation.name, rent_periods: [period_to_create], all_rent_periods: [period_to_not_delete], - } + }, } end