Skip to content

Commit

Permalink
fix rubocop issues
Browse files Browse the repository at this point in the history
  • Loading branch information
saipraveen18 committed Jan 10, 2025
1 parent 3f6cc9f commit c2e211b
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@

let(:primary_hbx_enrollment_member) do
FactoryBot.build(:hbx_enrollment_member, is_subscriber: true,
applicant_id: family1.family_members.first.id,
coverage_start_on: TimeKeeper.date_of_record,
eligibility_date: TimeKeeper.date_of_record)
applicant_id: family1.family_members.first.id,
coverage_start_on: TimeKeeper.date_of_record,
eligibility_date: TimeKeeper.date_of_record)
end

let(:dependent_hbx_enrollment_member) do
FactoryBot.build(:hbx_enrollment_member, is_subscriber: false,
applicant_id: dependent_family_member.id,
coverage_start_on: TimeKeeper.date_of_record,
eligibility_date: TimeKeeper.date_of_record)
applicant_id: dependent_family_member.id,
coverage_start_on: TimeKeeper.date_of_record,
eligibility_date: TimeKeeper.date_of_record)
end

let(:hbx_enrollment1) do
Expand Down Expand Up @@ -65,10 +65,10 @@

let!(:thhe) do
tax_household_enrollment = FactoryBot.build(:tax_household_enrollment, enrollment_id: hbx_enrollment1.id, tax_household_id: tax_household1.id,
health_product_hios_id: hbx_enrollment1.product.hios_id,
household_health_benchmark_ehb_premium: Money.new(100_000),
household_dental_benchmark_ehb_premium: Money.new(50_000),
dental_product_hios_id: nil, tax_household_members_enrollment_members: thhm_enrollment_members)
health_product_hios_id: hbx_enrollment1.product.hios_id,
household_health_benchmark_ehb_premium: Money.new(100_000),
household_dental_benchmark_ehb_premium: Money.new(50_000),
dental_product_hios_id: nil, tax_household_members_enrollment_members: thhm_enrollment_members)
tax_household_enrollment.save
tax_household_enrollment
end
Expand All @@ -93,8 +93,8 @@
expect(family1.tax_household_groups.last.tax_households.count).to eq 2
expect(TaxHouseholdEnrollment.all.count).to eq 2
expect(result.success).to eq(
"Successfully processed all enrollments. Please check the report: #{csv_file_name} for more details."
)
"Successfully processed all enrollments. Please check the report: #{csv_file_name} for more details."
)
end
end
end

0 comments on commit c2e211b

Please sign in to comment.