File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import RealmSwift
12
12
import RxRealm
13
13
import RxSwift
14
14
15
+
15
16
class RxRealmRealmTests : XCTestCase {
16
17
let allTests = [
17
18
" testRealmDidChangeNotifications " : testRealmDidChangeNotifications,
@@ -20,7 +21,7 @@ class RxRealmRealmTests: XCTestCase {
20
21
func testRealmDidChangeNotifications( ) {
21
22
let realm = realmInMemory ( #function)
22
23
23
- let realmNotifications = Observable< ( Realm, Realm . Notification) > . from( realm: realm)
24
+ let realmNotifications = RxSwift . Observable< ( Realm, Realm . Notification) > . from( realm: realm)
24
25
25
26
DispatchQueue . main. async {
26
27
try ! realm. write {
@@ -44,7 +45,7 @@ class RxRealmRealmTests: XCTestCase {
44
45
let realm = realmInMemory ( #function)
45
46
realm. autorefresh = false
46
47
47
- let realmNotifications = Observable< ( Realm, Realm . Notification) > . from( realm: realm)
48
+ let realmNotifications = RxSwift . Observable< ( Realm, Realm . Notification) > . from( realm: realm)
48
49
49
50
DispatchQueue . main. async {
50
51
try ! realm. write {
You can’t perform that action at this time.
0 commit comments