diff --git a/test/fixtures/contacts.yml b/test/fixtures/contacts.yml index cb9387090..62e3e0a30 100644 --- a/test/fixtures/contacts.yml +++ b/test/fixtures/contacts.yml @@ -24,7 +24,7 @@ william: &william street: Main Street zip: 12345 city: New York - state: New York + state: New York State country_code: US statuses: - ok diff --git a/test/system/admin_area/contacts_test.rb b/test/system/admin_area/contacts_test.rb index c72004988..7ace0b7ec 100644 --- a/test/system/admin_area/contacts_test.rb +++ b/test/system/admin_area/contacts_test.rb @@ -20,6 +20,6 @@ class AdminContactsTest < ApplicationSystemTestCase visit admin_contact_path(@contact) assert_text('Street Main Street City New York Postcode 12345 ' \ - 'State New York Country United States of America') + 'State New York State Country United States of America') end end