From dd68798e4e872091598b4e4a6dff5c07b76a3927 Mon Sep 17 00:00:00 2001 From: baarkerlounger Date: Fri, 5 Nov 2021 17:15:42 +0000 Subject: [PATCH] Lazy create --- spec/features/case_log_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/features/case_log_spec.rb b/spec/features/case_log_spec.rb index c874ebee9..160bb883b 100644 --- a/spec/features/case_log_spec.rb +++ b/spec/features/case_log_spec.rb @@ -396,7 +396,7 @@ RSpec.describe "Test Features" do describe "Soft Validation" do context "given a weekly net income that is above the expected amount for the given economic status but below the hard max" do - let!(:case_log) { FactoryBot.create(:case_log, :in_progress, ecstat1: "Full-time - 30 hours or more") } + let(:case_log) { FactoryBot.create(:case_log, :in_progress, ecstat1: "Full-time - 30 hours or more") } let(:income_over_soft_limit) { 750 } let(:income_under_soft_limit) { 700 }