Strory#110308584 - update test "returns no authorization error for wrong user and no password"

This commit is contained in:
Vladimir Krylov 2016-06-08 16:00:07 +03:00
parent 1d6b6a6748
commit 72f40e0739

View file

@ -911,9 +911,9 @@ describe 'EPP Contact', epp: true do
response[:results].count.should == 1
contact = response[:parsed].css('resData infData')
contact.css('postalInfo addr city').first.try(:text).should == nil
contact.css('email').first.try(:text).should == nil
contact.css('voice').first.try(:text).should == nil
contact.css('postalInfo addr city').first.try(:text).should == "No access"
contact.css('email').first.try(:text).should == "No access"
contact.css('voice').first.try(:text).should == "No access"
end
end
end