Update documentation for registry lock.

Also, make rewrite the return error message using better grammar
This commit is contained in:
Maciej Szlosarczyk 2018-08-17 16:00:43 +03:00
parent 0c7c8eb480
commit 97617764fb
No known key found for this signature in database
GPG key ID: 41D62D42D3B0D765
3 changed files with 4 additions and 4 deletions

View file

@ -85,7 +85,7 @@ class RegistrantApiDomainRegistryLockTest < ApplicationIntegrationTest
response_json = JSON.parse(response.body, symbolize_names: true)
assert_equal(422, response.status)
assert_equal({ errors: [{ base: ['Domain not locked'] }] }, response_json)
assert_equal({ errors: [{ base: ['Domain is not locked'] }] }, response_json)
end
def test_returns_404_when_domain_is_not_found