fix API Gateway:create_api_key return wrong status code (#3136)

This commit is contained in:
cm-iwata 2020-07-15 20:21:11 +09:00 committed by GitHub
commit 4e4ce5f9f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -1846,6 +1846,7 @@ def test_create_api_key():
payload = {"value": apikey_value, "name": apikey_name}
response = client.create_api_key(**payload)
response["ResponseMetadata"]["HTTPStatusCode"].should.equal(201)
response["name"].should.equal(apikey_name)
response["value"].should.equal(apikey_value)
response["enabled"].should.equal(False)