Skip to content

Commit 061fe9b

Browse files
committed
m
1 parent 30235cd commit 061fe9b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

DynamoDbEncryption/dafny/DynamoDbEncryption/src/DynamoToStruct.dfy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -496,9 +496,9 @@ module DynamoToStruct {
496496

497497
function method ListAttrToBytes(l: ListAttributeValue, depth : nat): (ret: Result<seq<uint8>, string>)
498498
ensures ret.Success? ==>
499-
&& U32ToBigEndian(|l|).Success?
500-
&& LENGTH_LEN <= |ret.value|
501-
&& ret.value[..LENGTH_LEN] == U32ToBigEndian(|l|).value
499+
&& U32ToBigEndian(|l|).Success?
500+
&& LENGTH_LEN <= |ret.value|
501+
&& ret.value[..LENGTH_LEN] == U32ToBigEndian(|l|).value
502502
{
503503
var count :- U32ToBigEndian(|l|);
504504
var body :- CollectList(l, depth);

0 commit comments

Comments
 (0)