Add CRC32 to DynamoDB responses (#3677)

* Add CRC32 to DynamoDB responses

* Change test assertion

* CRC32 - Align Py2/Py3 behaviour

Co-authored-by: Bert Blommers <info@bertblommers.nl>
This commit is contained in:
Jonathan Bergknoff 2021-02-12 08:26:06 -06:00 committed by GitHub
commit 676d61bf5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 3 deletions

View file

@ -17,3 +17,4 @@ def test_table_list():
headers = {"X-Amz-Target": "TestTable.ListTables"}
res = test_client.get("/", headers=headers)
res.data.should.contain(b"TableNames")
res.headers.should.have.key("X-Amz-Crc32")