We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 629c2ae commit 8e0ebf9Copy full SHA for 8e0ebf9
FirebaseMessaging/Tests/IntegrationTests/FIRMessagingTokenRefreshTests.swift
@@ -17,7 +17,7 @@
17
// macOS requests a user password when accessing the Keychain for the first time,
18
// so the tests may fail. Disable integration tests on macOS so far.
19
// TODO: Configure the tests to run on macOS without requesting the keychain password.
20
-#if !TARGET_OS_OSX
+#if !os(OSX)
21
22
import FirebaseCore
23
import FirebaseInstanceID
@@ -29,7 +29,7 @@
29
var messaging = Messaging.messaging()
30
var delegateIsCalled = false
31
32
- func messaging(_ messaging: Messaging, didReceiveRegistrationToken fcmToken: String) {
+ func messaging(_: Messaging, didReceiveRegistrationToken _: String) {
33
delegateIsCalled = true
34
}
35
0 commit comments