We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 645914a commit 4b0c56dCopy full SHA for 4b0c56d
TestVectors/dafny/DDBEncryption/src/TestVectors.dfy
@@ -665,13 +665,10 @@ module {:options "-functionSyntax:4"} DdbEncryptionTestVectors {
665
results[i] := FullSearch(client, queries[i]);
666
}
667
668
- var configs := tableEncryptionConfigs.Keys;
669
- while configs != {}
670
- decreases |configs|
671
- invariant forall k <- configs :: k in tableEncryptionConfigs
+ var configs := SortedSets.ComputeSetToOrderedSequence2(tableEncryptionConfigs.Keys, CharLess);
+ for i := 0 to |configs|
672
{
673
- var config :| config in configs;
674
- configs := configs - { config };
+ var config := configs[i];
675
BasicQueryTestConfig(tableEncryptionConfigs[config], results, globalRecords);
676
677
0 commit comments