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
var hasDynamoDbEncryptionTransformsException? := String.HasSubString(deleteResult.error.objMessage, "Condition Expressions forbidden on encrypted attributes");
919
919
expect hasDynamoDbEncryptionTransformsException?.Some?, "Error might is not be of type DynamoDbEncryptionTransformsException";
expect deleteResult.Success?, "DeleteItem should have failed.";
922
+
expect deleteResult.value.Attributes.Some?, "DeleteItemOutput should have had some attribute because ReturnValues was setas `ALL_OLD` in DeleteItemInput";
923
+
expectdeleteResult.value.Attributes.value == records[i].item, "Wrong item was deleted.";
924
924
} else {
925
925
expect deleteResult.Failure?, "DeleteItem should have failed.";
926
926
expect deleteResult.error.ConditionalCheckFailedException?, "DeleteItem should have failed with ConditionalCheckFailedException";
0 commit comments