File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
TestVectors/dafny/DDBEncryption/src Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -824,7 +824,7 @@ module {:options "-functionSyntax:4"} DdbEncryptionTestVectors {
824
824
);
825
825
var resultForInsertStatement := wClient. ExecuteStatement (inputForInsertStatement);
826
826
expect resultForInsertStatement. Failure?;
827
- print (resultForInsertStatement. error);
827
+ print (resultForInsertStatement. error. objMessage );
828
828
829
829
// Create a PartiQL SELECT statement
830
830
// The dynamodb attributes are random and non-existent because ExecuteStatement is supposed to be failed before going into dynamodb.
@@ -839,6 +839,7 @@ module {:options "-functionSyntax:4"} DdbEncryptionTestVectors {
839
839
);
840
840
var resultForSelectStatement := rClient. ExecuteStatement (inputForSelectStatement);
841
841
expect resultForSelectStatement. Failure?;
842
+ print (resultForSelectStatement. error. objMessage);
842
843
}
843
844
844
845
method FindMatchingRecord (expected : DDB .AttributeMap, actual : DDB .ItemList) returns (output : bool )
You can’t perform that action at this time.
0 commit comments