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.";
921
+
expect deleteResult.Success?, "DeleteItem should have succeeded.";
922
922
expect deleteResult.value.Attributes.Some?, "DeleteItemOutput should have had some attribute because ReturnValues was setas `ALL_OLD` in DeleteItemInput";
923
923
expect deleteResult.value.Attributes.value == records[i].item, "Wrong item was deleted.";
0 commit comments