You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
expect deleteResult.Success?, "DeleteItem should have succeeded.";
924
924
expect deleteResult.value.Attributes.Some?, "DeleteItemOutput should have had some attribute because ReturnValues was setas `ALL_OLD` in DeleteItemInput";
925
-
expect deleteResult.value.Attributes.value == records[i].item, "Wrong item was deleted.";
925
+
expect deleteResult.value.Attributes.value[HashName]== records[i].item[HashName], "Wrong item was deleted.";
926
926
} else {
927
927
expect deleteResult.Failure?, "DeleteItem should have failed.";
928
928
expect deleteResult.error.ConditionalCheckFailedException?, "DeleteItem should have failed with ConditionalCheckFailedException";
expect deleteResultForWithoutConditionExpressionCase.Success?, "DeleteItem should have failed.";
946
946
expect deleteResultForWithoutConditionExpressionCase.value.Attributes.Some?, "DeleteItemOutput should have had some attribute because ReturnValues was setas `ALL_OLD` in DeleteItemInput";
947
947
if attributeToDelete in records[i].item {
948
-
expect deleteResultForWithoutConditionExpressionCase.value.Attributes.value == records[i].item, "Wrong item was deleted.";
948
+
expect deleteResultForWithoutConditionExpressionCase.value.Attributes.value[HashName]== records[i].item[HashName], "Wrong item was deleted.";
0 commit comments