@@ -92,7 +92,7 @@ final class UserConcurrencyTests: XCTestCase {
92
92
)
93
93
OneSignalCoreImpl . setSharedClient ( client)
94
94
95
- let executor = OSSubscriptionOperationExecutor ( )
95
+ let executor = OSSubscriptionOperationExecutor ( newRecordsState : OSNewRecordsState ( ) )
96
96
OSOperationRepo . sharedInstance. addExecutor ( executor)
97
97
98
98
/* When */
@@ -131,7 +131,7 @@ final class UserConcurrencyTests: XCTestCase {
131
131
OneSignalCoreImpl . setSharedClient ( client)
132
132
MockUserRequests . setAddAliasesResponse ( with: client, aliases: aliases)
133
133
134
- let executor = OSIdentityOperationExecutor ( )
134
+ let executor = OSIdentityOperationExecutor ( newRecordsState : OSNewRecordsState ( ) )
135
135
OSOperationRepo . sharedInstance. addExecutor ( executor)
136
136
137
137
/* When */
@@ -172,7 +172,7 @@ final class UserConcurrencyTests: XCTestCase {
172
172
let identityModel = OSIdentityModel ( aliases: [ OS_ONESIGNAL_ID: UUID ( ) . uuidString] , changeNotifier: OSEventProducer ( ) )
173
173
OneSignalUserManagerImpl . sharedInstance. addIdentityModelToRepo ( identityModel)
174
174
175
- let executor = OSPropertyOperationExecutor ( )
175
+ let executor = OSPropertyOperationExecutor ( newRecordsState : OSNewRecordsState ( ) )
176
176
OSOperationRepo . sharedInstance. addExecutor ( executor)
177
177
178
178
/* When */
@@ -213,7 +213,7 @@ final class UserConcurrencyTests: XCTestCase {
213
213
let identityModel1 = OSIdentityModel ( aliases: [ OS_ONESIGNAL_ID: UUID ( ) . uuidString] , changeNotifier: OSEventProducer ( ) )
214
214
let identityModel2 = OSIdentityModel ( aliases: [ OS_ONESIGNAL_ID: UUID ( ) . uuidString] , changeNotifier: OSEventProducer ( ) )
215
215
216
- let userExecutor = OSUserExecutor ( )
216
+ let userExecutor = OSUserExecutor ( newRecordsState : OSNewRecordsState ( ) )
217
217
218
218
/* When */
219
219
0 commit comments