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 {
356356 plaintextOverride := plaintextOverride
357357 );
358358 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);
362363 }
363364
364365 method GetOneTableConfig (name : string , data : JSON , keys: KeyVectors .KeyVectorsClient)
You can’t perform that action at this time.
0 commit comments