From a568e0b775ae1a3d3930882034ff021c051da6ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Meny?= Date: Fri, 17 Jun 2022 11:00:52 +0100 Subject: [PATCH] Remove fixed term check for tenancy 7 --- app/models/case_log.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/models/case_log.rb b/app/models/case_log.rb index adc944621..00dc9505f 100644 --- a/app/models/case_log.rb +++ b/app/models/case_log.rb @@ -210,7 +210,7 @@ class CaseLog < ApplicationRecord end def is_fixed_term_tenancy? - [4, 6, 7].include?(tenancy) + [4, 6].include?(tenancy) end def is_secure_tenancy? @@ -332,7 +332,6 @@ class CaseLog < ApplicationRecord end def benefits_unknown? - # 3: Don’t know hb == 3 end