1
0
Fork 0

Fix code style

This commit is contained in:
Alex Kotov 2019-03-24 23:23:52 +05:00
parent 896dc273ef
commit 16224bfd15
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08

View file

@ -13,7 +13,7 @@ When 'there is a supporter account with the following data:' do |table|
options = table.raw.map { |(k, v)| [k.to_sym, v] }.to_h
country_state = create :country_state, name: options[:country_state]
regional_office = create :regional_office
regional_office = create :regional_office, country_state: country_state
person = create :supporter_person, regional_office: regional_office
create :personal_account,
@ -27,7 +27,7 @@ When 'there is a member account with the following data:' do |table|
options = table.raw.map { |(k, v)| [k.to_sym, v] }.to_h
country_state = create :country_state, name: options[:country_state]
regional_office = create :regional_office
regional_office = create :regional_office, country_state: country_state
person = create :member_person, regional_office: regional_office
create :personal_account,