Skip to content

Commit c675502

Browse files
committed
format
1 parent 6d5da16 commit c675502

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

DynamoDbEncryption/dafny/DynamoDbEncryption/src/ConfigToInfo.dfy

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -212,11 +212,11 @@ module SearchConfigToInfo {
212212
var getKeyStoreInfoOutput :- getKeyStoreInfoOutput?.MapFailure(e => Error.AwsCryptographyKeyStore(e));
213213
var logicalKeyStoreName : string := getKeyStoreInfoOutput.logicalKeyStoreName;
214214
var logicalKeyStoreNameBytes : seq<uint8> :- UTF8.Encode(logicalKeyStoreName)
215-
.MapFailure(
216-
e => Error.DynamoDbEncryptionException(
217-
message := "Could not UTF-8 Encode Logical Key Store Name: " + e
218-
)
219-
);
215+
.MapFailure(
216+
e => Error.DynamoDbEncryptionException(
217+
message := "Could not UTF-8 Encode Logical Key Store Name: " + e
218+
)
219+
);
220220

221221
if config.multi? {
222222
:- Need(0 < config.multi.cacheTTL, E("Beacon Cache TTL must be at least 1."));

DynamoDbEncryption/dafny/DynamoDbEncryptionTransforms/src/Index.dfy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ module
156156
assert SearchConfigToInfo.ValidSearchConfig(inputConfig.search);
157157
SearchInModifies(config, tableName);
158158
reveal SearchConfigToInfo.ValidSharedCache();
159-
// TODO: remove assume axiom; this should be generated by smithy-dafny
159+
// TODO: remove assume axiom; this should be generated by smithy-dafny
160160
assume {:axiom} inputConfig.search.Some? ==> SearchConfigToInfo.ValidSharedCache(inputConfig.search.value.versions[0].keySource);
161161
var searchR := SearchConfigToInfo.Convert(inputConfig);
162162
var search :- searchR.MapFailure(e => AwsCryptographyDbEncryptionSdkDynamoDb(e));

0 commit comments

Comments
 (0)