From 3d29facd5377ae29e74fb0e50f093117cbe4dda1 Mon Sep 17 00:00:00 2001 From: Cesar de la Vega Date: Tue, 27 Aug 2024 17:05:26 +0200 Subject: [PATCH] fix api tests --- .../SwiftAPITester/CustomerCenterConfigDataAPI.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Tests/APITesters/AllAPITests/SwiftAPITester/CustomerCenterConfigDataAPI.swift b/Tests/APITesters/AllAPITests/SwiftAPITester/CustomerCenterConfigDataAPI.swift index 45425380ea..e3b98eadb4 100644 --- a/Tests/APITesters/AllAPITests/SwiftAPITester/CustomerCenterConfigDataAPI.swift +++ b/Tests/APITesters/AllAPITests/SwiftAPITester/CustomerCenterConfigDataAPI.swift @@ -16,12 +16,14 @@ func checkCustomerCenterConfigData(_ data: CustomerCenterConfigData) { let localization: CustomerCenterConfigData.Localization = data.localization let support: CustomerCenterConfigData.Support = data.support let lastPublishedAppVersion = data.lastPublishedAppVersion + let productId = data.productId let _: CustomerCenterConfigData = .init(screens: screens, appearance: appearance, localization: localization, support: support, - lastPublishedAppVersion: lastPublishedAppVersion) + lastPublishedAppVersion: lastPublishedAppVersion, + productId: productId) } func checkHelpPath(_ path: CustomerCenterConfigData.HelpPath) {