File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
TestVectors/dafny/DDBEncryption/src Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -856,10 +856,6 @@ module {:options "-functionSyntax:4"} DdbEncryptionTestVectors {
856
856
var resultForInsertStatement := wClient. ExecuteStatement (inputForInsertStatement);
857
857
expect resultForInsertStatement. Failure?;
858
858
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. ";
863
859
864
860
// Create a PartiQL SELECT statement
865
861
// 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 {
875
871
var resultForSelectStatement := rClient. ExecuteStatement (inputForSelectStatement);
876
872
expect resultForSelectStatement. Failure?;
877
873
expect resultForSelectStatement. error. OpaqueWithText?;
878
- expect resultForSelectStatement. error. objMessage == "ExecuteStatement not Supported on encrypted tables. ";
879
874
}
880
875
881
876
method FindMatchingRecord (expected : DDB .AttributeMap, actual : DDB .ItemList) returns (output : bool )
You can’t perform that action at this time.
0 commit comments