Skip to content

Commit ab174cb

Browse files
committed
m
1 parent 7e17008 commit ab174cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

TestVectors/dafny/DDBEncryption/src/JsonConfig.dfy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ module {:options "-functionSyntax:4"} JsonConfig {
571571

572572
var src := SI.KeySource(client, store, SI.SingleLoc("foo"), cache, 100 as uint32, partitionIdBytes, logicalKeyStoreNameBytes);
573573

574-
var bv :- expect SI.MakeBeaconVersion(1, src, map[], map[], map[]);
574+
var bv :- expect SI.MakeBeaconVersion(1, src, map[], map[], map[], 1);
575575
return Success(bv);
576576
}
577577

TestVectors/dafny/DDBEncryption/src/TestVectors.dfy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ module {:options "-functionSyntax:4"} DdbEncryptionTestVectors {
151151
var query := SimpleQuery(None, None, expr, []);
152152
var items1 := FullScan(client, query, Some(map[]), vals);
153153
var bv :- expect GetFakeBeaconVersion();
154-
var items2 :- expect Filter.FilterResults(bv, subRecords, None, expr, None, vals);
154+
var items2 :- expect Filter.FilterResults(bv, subRecords, None, expr, None, vals, []);
155155
CompareRecordsDisordered2(items1, items2);
156156
}
157157
}

0 commit comments

Comments
 (0)