Fix for ReturnValues.

This commit is contained in:
Paul Craciunoiu 2016-01-15 10:23:29 -07:00
commit 4e9f4bfbbf
3 changed files with 10 additions and 3 deletions

View file

@ -430,7 +430,7 @@ def test_update_item_remove():
}
table.put_item(data=data)
key_map = {
"S": "steve"
'username': {"S": "steve"}
}
# Then remove the SentBy field
@ -455,7 +455,7 @@ def test_update_item_set():
}
table.put_item(data=data)
key_map = {
"S": "steve"
'username': {"S": "steve"}
}
conn.update_item("messages", key_map, update_expression="SET foo=:bar, blah=:baz REMOVE :SentBy")