Fix for ReturnValues.
This commit is contained in:
parent
bdd4ae824b
commit
4e9f4bfbbf
3 changed files with 10 additions and 3 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue