Fix domain statues taken error

This commit is contained in:
Martin Lensment 2015-02-02 19:10:40 +02:00
parent 2a48c93d33
commit 17386c0010
2 changed files with 3 additions and 2 deletions

View file

@ -148,9 +148,10 @@ en:
domain_status:
attributes:
setting_id:
value:
taken: 'Status already exists on this domain'
user:
attributes:
username:

View file

@ -1338,8 +1338,8 @@ describe 'EPP Domain', epp: true do
xml = domain_info_xml(name: { value: domain.name })
response = epp_plain_request(xml, :xml)
response[:results][0][:result_code].should == '1000'
response[:results][0][:msg].should == 'Command completed successfully'
response[:results][0][:result_code].should == '1000'
inf_data = response[:parsed].css('resData infData')
inf_data.css('name').text.should == domain.name