File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
TestVectors/dafny/DDBEncryption/src Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -854,6 +854,7 @@ module {:options "-functionSyntax:4"} DdbEncryptionTestVectors {
854854 );
855855 var resultForInsertStatement := wClient. ExecuteStatement (inputForInsertStatement);
856856 expect resultForInsertStatement. Failure?;
857+ expect resultForInsertStatement. error. OpaqueWithText?;
857858 expect resultForInsertStatement. error. objMessage == "ExecuteStatement not Supported on encrypted tables. ";
858859
859860 // Create a PartiQL SELECT statement
@@ -869,6 +870,7 @@ module {:options "-functionSyntax:4"} DdbEncryptionTestVectors {
869870 );
870871 var resultForSelectStatement := rClient. ExecuteStatement (inputForSelectStatement);
871872 expect resultForSelectStatement. Failure?;
873+ expect resultForSelectStatement. error. OpaqueWithText?;
872874 expect resultForSelectStatement. error. objMessage == "ExecuteStatement not Supported on encrypted tables. ";
873875 }
874876
You can’t perform that action at this time.
0 commit comments