diff --git a/spec/factories/registrar.rb b/spec/factories/registrar.rb index ab46553a0..3b2a3e730 100644 --- a/spec/factories/registrar.rb +++ b/spec/factories/registrar.rb @@ -8,7 +8,7 @@ FactoryBot.define do state 'test' zip 'test' email 'test@test.com' - country_code 'EE' + country_code 'US' accounting_customer_code 'test' factory :registrar_with_unlimited_balance do diff --git a/spec/rails_helper.rb b/spec/rails_helper.rb index f4dcd9cb3..6dded4f13 100644 --- a/spec/rails_helper.rb +++ b/spec/rails_helper.rb @@ -20,6 +20,7 @@ require 'support/paper_trail' require 'support/settings' ActiveRecord::Migration.maintain_test_schema! +Setting.registry_country_code = 'US' RSpec.configure do |config| config.include ActionView::TestCase::Behavior, type: :presenter