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.
2 parents 2df6602 + 9070817 commit 1424a88Copy full SHA for 1424a88
TestFoundation/TestNotificationQueue.swift
@@ -205,8 +205,9 @@ FIXME SR-4280 timeouts in TestNSNotificationQueue tests
205
weak var notificationQueue: NotificationQueue?
206
207
self.executeInBackgroundThread() {
208
- notificationQueue = NotificationQueue(notificationCenter: NotificationCenter())
209
- XCTAssertNotNil(notificationQueue)
+ let nq = NotificationQueue(notificationCenter: NotificationCenter())
+ notificationQueue = nq
210
+ XCTAssertNotNil(nq)
211
}
212
213
XCTAssertNil(notificationQueue)
0 commit comments