Skip to content

Commit ec36a25

Browse files
auto commit
1 parent 3a81da9 commit ec36a25

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

TestVectors/dafny/DDBEncryption/src/TestVectors.dfy

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)