diff --git a/ElementX/Sources/Mocks/Generated/SDKGeneratedMocks.swift b/ElementX/Sources/Mocks/Generated/SDKGeneratedMocks.swift index 25e0ba3fc5..795a343d87 100644 --- a/ElementX/Sources/Mocks/Generated/SDKGeneratedMocks.swift +++ b/ElementX/Sources/Mocks/Generated/SDKGeneratedMocks.swift @@ -274,23 +274,7 @@ class SDKClientMock: SDKClientProtocol { return getNotificationSettingsReturnValue } } - //MARK: - `getNotificationSettings` - - public var getNotificationSettingsCallsCount = 0 - public var getNotificationSettingsCalled: Bool { - return getNotificationSettingsCallsCount > 0 - } - public var getNotificationSettingsReturnValue: NotificationSettings! - public var getNotificationSettingsClosure: (() -> NotificationSettings)? - public func `getNotificationSettings`() -> NotificationSettings { - getNotificationSettingsCallsCount += 1 - if let getNotificationSettingsClosure = getNotificationSettingsClosure { - return getNotificationSettingsClosure() - } else { - return getNotificationSettingsReturnValue - } - } //MARK: - `getProfile` public var getProfileUserIdThrowableError: Error?