Fix status code

#693
This commit is contained in:
Artur Beljajev 2018-02-22 18:03:48 +02:00
parent cde4d00b55
commit 923d2d5446
2 changed files with 6 additions and 4 deletions

View file

@ -51,7 +51,7 @@ class Registrar
end end
end end
if response.code == '204' if response.code == '200'
flash[:notice] = t '.transferred' flash[:notice] = t '.transferred'
redirect_to registrar_domains_url redirect_to registrar_domains_url
else else

View file

@ -7,12 +7,14 @@ class RegistrarDomainTransfersTest < ActionDispatch::IntegrationTest
end end
def test_batch_transfer_succeeds def test_batch_transfer_succeeds
body = { data: { domainTransfers: [{ domainName: 'shop.test', transferCode: '65078d5' }] } } request_body = { data: { domainTransfers: [{ domainName: 'shop.test', transferCode: '65078d5' }] } }
headers = { 'Content-type' => 'application/json' } headers = { 'Content-type' => 'application/json' }
request_stub = stub_request(:post, /domain_transfers/).with(body: body, request_stub = stub_request(:post, /domain_transfers/).with(body: request_body,
headers: headers, headers: headers,
basic_auth: ['test_goodnames', 'testtest']) basic_auth: ['test_goodnames', 'testtest'])
.to_return(status: 204) .to_return(body: { data: [{
type: 'domain_transfer'
}] }.to_json, status: 200)
visit registrar_domains_url visit registrar_domains_url
click_link 'Transfer' click_link 'Transfer'