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 11474a9 commit 4995928Copy full SHA for 4995928
Tests/RxCocoaTests/RuntimeStateSnapshot.swift
@@ -13,7 +13,7 @@ final class ObjectRuntimeState {
13
let actingAs: ClassRuntimeState
14
15
init(target: AnyObject) {
16
- assert(object_getClass(target) == type(of: target))
+ assert(object_getClass(target).isSubclass(of: type(of: target)))
17
real = ClassRuntimeState(object_getClass(target))
18
actingAs = ClassRuntimeState(RXObjCTestRuntime.objCClass(target))
19
}
Tests/RxSwiftTests/DisposableTest.swift
@@ -11,6 +11,7 @@ import RxSwift
11
import RxTest
12
import class Dispatch.DispatchQueue
+import class Dispatch.DispatchSpecificKey
#if os(Linux)
import func Glibc.random
#else
0 commit comments