Skip to content

Commit 86faab6

Browse files
committed
CI fixes
1 parent ef9ff11 commit 86faab6

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

FirebaseRemoteConfig.podspec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ app update.
105105
}
106106
swift_api.source_files = ['FirebaseRemoteConfig/Tests/Swift/SwiftAPI/*.swift',
107107
'FirebaseRemoteConfig/Tests/Swift/FakeUtils/*.swift',
108-
'FirebaseRemoteConfig/Tests/Swift/ObjC/*.[hm]',
109108
]
110109
# Excludes tests that cannot be include in API tests because it requires fetch remote values from
111110
# a real console but only one test can be run without polluting other tests' remote values.

FirebaseRemoteConfig/SwiftNew/RemoteConfig.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ private var RCInstances = [String: [String: RemoteConfig]]()
140140
/// to fetch, activate and read config results and set default config results on the default
141141
/// Remote Config instance.
142142
@objc(FIRRemoteConfig)
143-
public class RemoteConfig: NSObject, NSFastEnumeration {
143+
open class RemoteConfig: NSObject, NSFastEnumeration {
144144
/// All the config content.
145145
private let configContent: ConfigContent
146146

@@ -426,7 +426,7 @@ public class RemoteConfig: NSObject, NSFastEnumeration {
426426
/// and avoid calling this method again.
427427
@available(iOS 13, tvOS 13, macOS 10.15, macCatalyst 13, watchOS 7, *)
428428
public func fetch() async throws -> RemoteConfigFetchStatus {
429-
return try await withUnsafeThrowingContinuation() { continuation in
429+
return try await withUnsafeThrowingContinuation { continuation in
430430
self.fetch { status, error in
431431
if let error {
432432
continuation.resume(throwing: error)

0 commit comments

Comments
 (0)