@@ -26,7 +26,7 @@ struct LambdaContextTests {
2626        let  environment  =  [ " key " :  " value " ] 
2727        let  clientContext  =  ClientContext ( 
2828            client:  ClientApplication ( 
29-                 installationId :  " test-id " , 
29+                 installationID :  " test-id " , 
3030                appTitle:  " test-app " , 
3131                appVersionName:  " 1.0 " , 
3232                appVersionCode:  " 100 " , 
@@ -44,9 +44,9 @@ struct LambdaContextTests {
4444        let  decodedClientContext  =  try . decode ( ClientContext . self,  from:  clientContextData) 
4545
4646        let  decodedClient  =  try ( decodedClientContext. client) 
47-         let  originalClient  =  try ( clientContext. client) 
47+         let  originalClient  =  try ( clientContext. client)   
4848
49-         #expect( decodedClient. installationId  ==  originalClient. installationId ) 
49+         #expect( decodedClient. installationID  ==  originalClient. installationID ) 
5050        #expect( decodedClient. appTitle ==  originalClient. appTitle) 
5151        #expect( decodedClient. appVersionName ==  originalClient. appVersionName) 
5252        #expect( decodedClient. appVersionCode ==  originalClient. appVersionCode) 
@@ -96,7 +96,7 @@ struct LambdaContextTests {
9696
9797        // Verify client application data
9898        let  client  =  try ( decodedClientContext. client) 
99-         #expect( client. installationId  ==  " example-id " ) 
99+         #expect( client. installationID  ==  " example-id " ) 
100100        #expect( client. appTitle ==  " Example App " ) 
101101        #expect( client. appVersionName ==  " 1.0 " ) 
102102        #expect( client. appVersionCode ==  " 1 " ) 
0 commit comments