Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ncooke3 committed Sep 7, 2024
1 parent 4bc61c1 commit 01f68db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion FirebaseAuth/Tests/Unit/Fakes/FakeBackendRPCIssuer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class FakeBackendRPCIssuer: NSObject, AuthBackendRPCIssuer {
var respondBlock: (() throws -> Void)?
var nextRespondBlock: (() throws -> Void)?

var fakeGetAccountProviderJSON: [[String: Any]]?
var fakeGetAccountProviderJSON: [[String: AnyHashable]]?
var fakeSecureTokenServiceJSON: [String: AnyHashable]?
var secureTokenNetworkError: NSError?
var secureTokenErrorString: String?
Expand Down
4 changes: 2 additions & 2 deletions FirebaseAuth/Tests/Unit/UserTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,11 @@ class UserTests: RPCBaseTests {
],
[
// In practice, this will be an empty dictionary.
"totpInfo": [AnyHashable: Any](),
"totpInfo": [AnyHashable: AnyHashable](),
"mfaEnrollmentId": kEnrollmentID,
"displayName": kDisplayName,
"enrolledAt": kEnrolledAt,
],
] as [AnyHashable: AnyHashable],
],
]]

Expand Down

0 comments on commit 01f68db

Please sign in to comment.