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 {
824824 );
825825 var resultForInsertStatement := wClient. ExecuteStatement (inputForInsertStatement);
826826 expect resultForInsertStatement. Failure?;
827- print (resultForInsertStatement. error);
827+ print (resultForInsertStatement. error. objMessage );
828828
829829 // Create a PartiQL SELECT statement
830830 // 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 {
839839 );
840840 var resultForSelectStatement := rClient. ExecuteStatement (inputForSelectStatement);
841841 expect resultForSelectStatement. Failure?;
842+ print (resultForSelectStatement. error. objMessage);
842843 }
843844
844845 method FindMatchingRecord (expected : DDB .AttributeMap, actual : DDB .ItemList) returns (output : bool )
You can’t perform that action at this time.
0 commit comments