File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
TestVectors/dafny/DDBEncryption/src Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -356,9 +356,10 @@ module {:options "-functionSyntax:4"} JsonConfig {
356
356
plaintextOverride := plaintextOverride
357
357
);
358
358
var enc : ENC. IDynamoDbItemEncryptorClient :- expect CreateWrappedItemEncryptor. CreateWrappedItemEncryptor (encryptorConfig);
359
- assert enc is DynamoDbItemEncryptor. DynamoDbItemEncryptorClient;
360
- var encr := enc as DynamoDbItemEncryptor. DynamoDbItemEncryptorClient;
361
- return Success (encr);
359
+ return Success (enc);
360
+ // assert enc is DynamoDbItemEncryptor.DynamoDbItemEncryptorClient;
361
+ // var encr := enc as DynamoDbItemEncryptor.DynamoDbItemEncryptorClient;
362
+ // return Success(encr);
362
363
}
363
364
364
365
method GetOneTableConfig (name : string , data : JSON , keys: KeyVectors .KeyVectorsClient)
You can’t perform that action at this time.
0 commit comments