From 1065c1a516ee05cb4c621187e5dd4de8563072a3 Mon Sep 17 00:00:00 2001 From: Manny Dinssa <44172848+Dinssa@users.noreply.github.com> Date: Thu, 10 Oct 2024 14:51:42 +0100 Subject: [PATCH] Fix lint --- spec/models/organisation_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/models/organisation_spec.rb b/spec/models/organisation_spec.rb index 671541045..2bd93c229 100644 --- a/spec/models/organisation_spec.rb +++ b/spec/models/organisation_spec.rb @@ -124,7 +124,7 @@ RSpec.describe Organisation, type: :model do end before do - [4,2,1].each do |rent_period| + [4, 2, 1].each do |rent_period| create(:organisation_rent_period, organisation:, rent_period:) end allow(RentPeriod).to receive(:rent_period_mappings).and_return(fake_rent_periods)