Remove duplicate field

This commit is contained in:
Artur Beljajev 2018-09-04 13:39:26 +03:00
parent 98a95ec592
commit 762833726a
3 changed files with 3 additions and 4 deletions

View file

@ -16,9 +16,6 @@
<dt><%= t(:contact_email) %></dt>
<dd><%= @registrar.email %></dd>
<dt><%= Registrar.human_attribute_name :billing_email %></dt>
<dd><%= @registrar.billing_email %></dd>
</dl>
</div>
</div>

View file

@ -40,4 +40,5 @@ complete:
accounting_customer_code: US0001
language: en
vat_no: US12345
vat_rate: 0.05
vat_rate: 0.05
billing_email: billing@bestnames.test

View file

@ -14,5 +14,6 @@ class AdminAreaRegistrarDetailsTest < ApplicationSystemTestCase
assert_text 'VAT number US12345'
assert_text 'VAT rate 5.0%'
assert_text 'Language English'
assert_text 'billing@bestnames.test'
end
end