Skip to content

Commit

Permalink
fix e2e test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
aloverso committed Jan 7, 2025
1 parent 86aec1f commit 0fd9380
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
{ value: :own, label: t(".homeowner_html") },
{ value: :rent, label: t(".tenant_html") },
{ value: :both, label: t(".both_html") },
{ value: :neither, label: t(".neither") },
{ value: :neither, label: t(".neither_html") },
]
) %>
</div>
Expand Down
2 changes: 1 addition & 1 deletion config/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3236,7 +3236,7 @@ en:
helper_4_header: How much is this deduction or credit worth?
homeowner_html: I was a <b>homeowner</b> for at least part of the year
label_html: How would you describe your living situation in %{filing_year} <b>as it pertains to your main home(s)</b>?
neither: Other
neither_html: Other
tenant_html: I was a <b>renter</b> for at least part of the year
title: You may qualify for a property tax deduction or credit on your main home, whether you owned or rented it.
nj_ineligible_property_tax:
Expand Down
2 changes: 1 addition & 1 deletion config/locales/es.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3196,7 +3196,7 @@ es:
helper_4_header: How much is this deduction or credit worth?
homeowner_html: I was a <b>homeowner</b> for at least part of the year
label_html: How would you describe your living situation in %{filing_year} <b>as it pertains to your main home(s)</b>?
neither: Other
neither_html: Other
tenant_html: I was a <b>renter</b> for at least part of the year
title: You may qualify for a property tax deduction or credit on your main home, whether you owned or rented it.
nj_ineligible_property_tax:
Expand Down
2 changes: 1 addition & 1 deletion spec/features/state_file/complete_intake_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ def continue
def choose_household_rent_own(household_rent_own)
case household_rent_own
when "homeowner", "tenant", "both", "neither"
choose I18n.t("state_file.questions.nj_household_rent_own.edit.#{household_rent_own}")
choose strip_html_tags(I18n.t("state_file.questions.nj_household_rent_own.edit.#{household_rent_own}_html"))
else
throw "not a valid choice"
end
Expand Down

0 comments on commit 0fd9380

Please sign in to comment.