Skip to content

Commit 445d585

Browse files
auto commit
1 parent 78ae8e3 commit 445d585

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

TestVectors/dafny/DDBEncryption/src/TestVectors.dfy

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -856,10 +856,6 @@ module {:options "-functionSyntax:4"} DdbEncryptionTestVectors {
856856
var resultForInsertStatement := wClient.ExecuteStatement(inputForInsertStatement);
857857
expect resultForInsertStatement.Failure?;
858858
expect resultForInsertStatement.error.OpaqueWithText?;
859-
print("error message:");
860-
print(resultForInsertStatement.error.objMessage);
861-
print("\n");
862-
expect resultForInsertStatement.error.objMessage == "ExecuteStatement not Supported on encrypted tables.";
863859

864860
// Create a PartiQL SELECT statement
865861
// The dynamodb attributes are random and non-existent because ExecuteStatement is supposed to be failed before going into dynamodb.
@@ -875,7 +871,6 @@ module {:options "-functionSyntax:4"} DdbEncryptionTestVectors {
875871
var resultForSelectStatement := rClient.ExecuteStatement(inputForSelectStatement);
876872
expect resultForSelectStatement.Failure?;
877873
expect resultForSelectStatement.error.OpaqueWithText?;
878-
expect resultForSelectStatement.error.objMessage == "ExecuteStatement not Supported on encrypted tables.";
879874
}
880875

881876
method FindMatchingRecord(expected : DDB.AttributeMap, actual : DDB.ItemList) returns (output : bool)

0 commit comments

Comments
 (0)