From 1abe5433b4a5795ac6fd0192bcf9203a17900841 Mon Sep 17 00:00:00 2001 From: Linda Goldstein Date: Tue, 27 Jan 2026 22:28:31 -0500 Subject: [PATCH] Change default birth_month_year_youth in factory to not be transition aged and see what breaks --- spec/factories/casa_cases.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/factories/casa_cases.rb b/spec/factories/casa_cases.rb index 39d4987313..d9bdde1311 100644 --- a/spec/factories/casa_cases.rb +++ b/spec/factories/casa_cases.rb @@ -1,7 +1,7 @@ FactoryBot.define do factory :casa_case do sequence(:case_number) { |n| "CINA-#{n}" } - birth_month_year_youth { 16.years.ago } + birth_month_year_youth { 5.years.ago } casa_org { CasaOrg.first || create(:casa_org) } court_report_status { :not_submitted } case_court_orders { [] }