Skip to content

Commit 9fd7411

Browse files
fix
1 parent 241d9a9 commit 9fd7411

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

DynamoDbEncryption/dafny/DynamoDbEncryptionTransforms/Model/AwsCryptographyDbEncryptionSdkDynamoDbTransformsTypes.dfy

+8-8
Original file line numberDiff line numberDiff line change
@@ -782,13 +782,13 @@ abstract module AbstractAwsCryptographyDbEncryptionSdkDynamoDbTransformsService
782782
obj <- tmps9.Modifies | obj in tmps9.Modifies :: obj
783783
modifies set tmps10 <- set t10 <- config.tableEncryptionConfigs.Values | true
784784
&& t10.search.Some?
785-
, t11 <- t10.search.value.versions :: t11.keyStore,
785+
, t11 <- t10.search.value.versions | true :: t11.keyStore,
786786
obj <- tmps10.Modifies | obj in tmps10.Modifies :: obj
787787
modifies set tmps12 <- set t12 <- config.tableEncryptionConfigs.Values | true
788788
&& t12.search.Some?
789-
, t13 <- t12.search.value.versions && t13.keySource.multi?
790-
&& t13.keySource.multi.cache.Some?
791-
&& t13.keySource.multi.cache.value.Shared?
789+
, t13 <- t12.search.value.versions | true && t13.keySource.multi?
790+
&& t13.keySource.multi.cache.Some?
791+
&& t13.keySource.multi.cache.value.Shared?
792792
:: t13.keySource.multi.cache.value.Shared,
793793
obj <- tmps12.Modifies | obj in tmps12.Modifies :: obj
794794
ensures res.Success? ==>
@@ -808,13 +808,13 @@ abstract module AbstractAwsCryptographyDbEncryptionSdkDynamoDbTransformsService
808808
obj <- tmps16.Modifies | obj in tmps16.Modifies :: obj
809809
) - ( set tmps17 <- set t17 <- config.tableEncryptionConfigs.Values | true
810810
&& t17.search.Some?
811-
, t18 <- t17.search.value.versions :: t18.keyStore,
811+
, t18 <- t17.search.value.versions | true :: t18.keyStore,
812812
obj <- tmps17.Modifies | obj in tmps17.Modifies :: obj
813813
) - ( set tmps19 <- set t19 <- config.tableEncryptionConfigs.Values | true
814814
&& t19.search.Some?
815-
, t20 <- t19.search.value.versions && t20.keySource.multi?
816-
&& t20.keySource.multi.cache.Some?
817-
&& t20.keySource.multi.cache.value.Shared?
815+
, t20 <- t19.search.value.versions | true && t20.keySource.multi?
816+
&& t20.keySource.multi.cache.Some?
817+
&& t20.keySource.multi.cache.value.Shared?
818818
:: t20.keySource.multi.cache.value.Shared,
819819
obj <- tmps19.Modifies | obj in tmps19.Modifies :: obj
820820
) )

submodules/smithy-dafny

0 commit comments

Comments
 (0)