@@ -108,7 +108,7 @@ final class StoreContextTests: XCTestCase {
108108 store. state. caches [ key] = AtomCache ( atom: atom, value: 0 )
109109 store. state. states [ key] = AtomState ( coordinator: atom. makeCoordinator ( ) )
110110 store. state. subscriptions [ key, default: [ : ] ] [ subscriptionKey] = Subscription (
111- location: SourceLocation ( fileID : #file , line : #line ) ,
111+ location: SourceLocation ( ) ,
112112 requiresObjectUpdate: false ,
113113 notifyUpdate: { updateCount += 1 } ,
114114 unsubscribe: { }
@@ -147,7 +147,7 @@ final class StoreContextTests: XCTestCase {
147147 store. state. caches [ key] = AtomCache ( atom: atom, value: 0 )
148148 store. state. states [ key] = AtomState ( coordinator: atom. makeCoordinator ( ) )
149149 store. state. subscriptions [ key, default: [ : ] ] [ subscriptionKey] = Subscription (
150- location: SourceLocation ( fileID : #file , line : #line ) ,
150+ location: SourceLocation ( ) ,
151151 requiresObjectUpdate: false ,
152152 notifyUpdate: { updateCount += 1 } ,
153153 unsubscribe: { }
@@ -303,7 +303,7 @@ final class StoreContextTests: XCTestCase {
303303 key0: AtomCache ( atom: atom0, value: 0 ) ,
304304 key1: AtomCache ( atom: atom1, value: 1 ) ,
305305 ]
306- let subscription = Subscription ( location: SourceLocation ( fileID : #file , line : #line ) , requiresObjectUpdate: false , notifyUpdate: { } ) { }
306+ let subscription = Subscription ( location: SourceLocation ( ) , requiresObjectUpdate: false , notifyUpdate: { } ) { }
307307
308308 store. graph = graph
309309 store. state. caches = caches
@@ -836,7 +836,7 @@ final class StoreContextTests: XCTestCase {
836836 let atom0 = TestAtom ( value: 0 )
837837 let atom1 = TestAtom ( value: 1 )
838838 let atom2 = TestAtom ( value: 2 )
839- let location = SourceLocation ( fileID : #file , line : #line )
839+ let location = SourceLocation ( )
840840 let token = SubscriptionKey . Token ( )
841841 let subscriptionKey = SubscriptionKey ( token: token)
842842
0 commit comments