File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -2337,7 +2337,7 @@ extension Auth: AuthInterop {
23372337 /// Auth's backend.
23382338 var requestConfiguration : AuthRequestConfiguration
23392339
2340- var backend : AuthBackend
2340+ let backend : AuthBackend
23412341
23422342 #if os(iOS)
23432343
Original file line number Diff line number Diff line change @@ -282,7 +282,10 @@ import FirebaseCore
282282 . replacingOccurrences ( of: " ) " , with: " " )
283283 FirebaseApp . configure ( name: strippedName, options: options)
284284 OAuthProviderTests . auth = Auth . auth ( app: FirebaseApp . app ( name: strippedName) !)
285- OAuthProviderTests . auth? . backend = authBackend
285+ OAuthProviderTests . auth = Auth (
286+ app: FirebaseApp . app ( name: strippedName) !,
287+ backend: authBackend
288+ )
286289 OAuthProviderTests . auth? . mainBundleUrlTypes =
287290 [ [ " CFBundleURLSchemes " : [ scheme] ] ]
288291 }
You can’t perform that action at this time.
0 commit comments