@@ -34,7 +34,10 @@ import { expect } from 'chai'
34
34
import Sinon from 'sinon'
35
35
import { KMSClient } from '@aws-sdk/client-kms'
36
36
import { DynamoDBClient } from '@aws-sdk/client-dynamodb'
37
- import { BranchKeyStoreNode , KeyStoreInfoOutput } from '@aws-crypto/branch-keystore-node'
37
+ import {
38
+ BranchKeyStoreNode ,
39
+ KeyStoreInfoOutput ,
40
+ } from '@aws-crypto/branch-keystore-node'
38
41
39
42
const branchKeyIdA = BRANCH_KEY_ID_A
40
43
const branchKeyIdB = BRANCH_KEY_ID_B
@@ -130,14 +133,14 @@ describe('KmsHierarchicalKeyRingNode: onDecrypt', () => {
130
133
}
131
134
} )
132
135
133
- keyStore . getKeyStoreInfo . callsFake ( function ( ) : KeyStoreInfoOutput {
136
+ keyStore . getKeyStoreInfo . callsFake ( function ( ) : KeyStoreInfoOutput {
134
137
return {
135
- keystoreId : " keyStoreId" ,
136
- keystoreTableName : " keystoreTableName" ,
137
- logicalKeyStoreName : " logicalKeyStoreName" ,
138
+ keystoreId : ' keyStoreId' ,
139
+ keystoreTableName : ' keystoreTableName' ,
140
+ logicalKeyStoreName : ' logicalKeyStoreName' ,
138
141
grantTokens : [ ] ,
139
142
// This is not used by any tests
140
- kmsConfiguration : null as any
143
+ kmsConfiguration : null as any ,
141
144
}
142
145
} )
143
146
} )
@@ -595,7 +598,7 @@ describe('KmsHierarchicalKeyRingNode: onDecrypt', () => {
595
598
596
599
it ( 'CMC evictions occur due to capacity' , async ( ) => {
597
600
const maxCacheSize = 1
598
-
601
+
599
602
const hkr = new KmsHierarchicalKeyRingNode ( {
600
603
branchKeyIdSupplier,
601
604
keyStore,
0 commit comments