restore KeyId to test_decrypt in test_kms

This commit is contained in:
Earl Robinson 2019-08-14 08:39:54 -04:00
parent 5347a577da
commit bbaff4b273

View File

@ -191,6 +191,7 @@ def test_decrypt():
conn = boto.kms.connect_to_region('us-west-2')
response = conn.decrypt('ZW5jcnlwdG1l'.encode('utf-8'))
response['Plaintext'].should.equal(b'encryptme')
response['KeyId'].should.equal('key_id')
@mock_kms_deprecated