Skip to content

Commit

Permalink
ap-4566: add space between name, account and sortcode
Browse files Browse the repository at this point in the history
  • Loading branch information
kmahern committed Nov 8, 2023
1 parent 3389ccd commit 33d8aaf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/views/shared/check_answers/_assets.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
table.with_body do |body|
@legal_aid_application&.applicant&.bank_accounts&.each do |account|
body.with_row do |row|
row.with_cell(header: true, text: "#{account.name},#{account.account_number},#{account.sort_code}")
row.with_cell(header: true, text: "#{account.name}, #{account.account_number}, #{account.sort_code}")
row.with_cell(numeric: true, text: gds_number_to_currency(account.balance).to_s)
end
end
Expand Down
4 changes: 2 additions & 2 deletions features/providers/means_report.feature
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,8 @@ Feature: Means report

And the "Bank accounts", for open banking accounts, questions and answers table should exist:
| question | answer |
| Account Name,12345678,000000 | 75.57 |
| Second Account,87654321,999999 | 57.57 |
| Account Name, 12345678, 000000 | 75.57 |
| Second Account, 87654321, 999999 | 57.57 |

And the "Your client's accounts" questions should exist:
| question |
Expand Down

0 comments on commit 33d8aaf

Please sign in to comment.