@@ -26,7 +26,7 @@ struct LambdaContextTests {
26
26
let environment = [ " key " : " value " ]
27
27
let clientContext = ClientContext (
28
28
client: ClientApplication (
29
- installationId : " test-id " ,
29
+ installationID : " test-id " ,
30
30
appTitle: " test-app " ,
31
31
appVersionName: " 1.0 " ,
32
32
appVersionCode: " 100 " ,
@@ -44,9 +44,9 @@ struct LambdaContextTests {
44
44
let decodedClientContext = try decoder. decode ( ClientContext . self, from: clientContextData)
45
45
46
46
let decodedClient = try #require( decodedClientContext. client)
47
- let originalClient = try #require( clientContext. client)
47
+ let originalClient = try #require( clientContext. client)
48
48
49
- #expect( decodedClient. installationId == originalClient. installationId )
49
+ #expect( decodedClient. installationID == originalClient. installationID )
50
50
#expect( decodedClient. appTitle == originalClient. appTitle)
51
51
#expect( decodedClient. appVersionName == originalClient. appVersionName)
52
52
#expect( decodedClient. appVersionCode == originalClient. appVersionCode)
@@ -96,7 +96,7 @@ struct LambdaContextTests {
96
96
97
97
// Verify client application data
98
98
let client = try #require( decodedClientContext. client)
99
- #expect( client. installationId == " example-id " )
99
+ #expect( client. installationID == " example-id " )
100
100
#expect( client. appTitle == " Example App " )
101
101
#expect( client. appVersionName == " 1.0 " )
102
102
#expect( client. appVersionCode == " 1 " )
0 commit comments