Skip to content

Commit 3a5ee14

Browse files
authored
Fix test_connection_make_api_call__binary_attributes (#1269)
1 parent a5c1f4e commit 3a5ee14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_base_connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1614,7 +1614,7 @@ def test_connection_make_api_call__binary_attributes(send_mock):
16141614

16151615
send_mock.return_value = resp
16161616

1617-
resp = Connection()._make_api_call('BatchWriteItem', {})
1617+
resp = Connection()._make_api_call('BatchWriteItem', {"RequestItems": {}})
16181618

16191619
assert resp['UnprocessedItems']['someTable'] == [{
16201620
'PutRequest': {

0 commit comments

Comments
 (0)