@@ -60,7 +60,7 @@ final class LoadCountriesTests: CountriesInteractorTests {
6060 countries. updatesRecorder. sink  {  updates in 
6161 XCTAssertEqual ( updates,  [ 
6262 . notRequested, 
63-  . isLoading( last:  nil ,  cancelBag:  CancelBag ( ) ) , 
63+  . isLoading( last:  nil ,  cancelBag:  . test ) , 
6464 . loaded( list. lazyList) 
6565 ] ,  removing:  Country . prefixes) 
6666 self . mockedWebRepo. verify ( ) 
@@ -93,7 +93,7 @@ final class LoadCountriesTests: CountriesInteractorTests {
9393 countries. updatesRecorder. sink  {  updates in 
9494 XCTAssertEqual ( updates,  [ 
9595 . notRequested, 
96-  . isLoading( last:  nil ,  cancelBag:  CancelBag ( ) ) , 
96+  . isLoading( last:  nil ,  cancelBag:  . test ) , 
9797 . failed( error) 
9898 ] ,  removing:  Country . prefixes) 
9999 self . mockedWebRepo. verify ( ) 
@@ -126,7 +126,7 @@ final class LoadCountriesTests: CountriesInteractorTests {
126126 countries. updatesRecorder. sink  {  updates in 
127127 XCTAssertEqual ( updates,  [ 
128128 . notRequested, 
129-  . isLoading( last:  nil ,  cancelBag:  CancelBag ( ) ) , 
129+  . isLoading( last:  nil ,  cancelBag:  . test ) , 
130130 . failed( error) 
131131 ] ,  removing:  Country . prefixes) 
132132 self . mockedWebRepo. verify ( ) 
@@ -163,7 +163,7 @@ final class LoadCountriesTests: CountriesInteractorTests {
163163 countries. updatesRecorder. sink  {  updates in 
164164 XCTAssertEqual ( updates,  [ 
165165 . notRequested, 
166-  . isLoading( last:  nil ,  cancelBag:  CancelBag ( ) ) , 
166+  . isLoading( last:  nil ,  cancelBag:  . test ) , 
167167 . loaded( list. lazyList) 
168168 ] ,  removing:  Country . prefixes) 
169169 self . mockedWebRepo. verify ( ) 
@@ -199,7 +199,7 @@ final class LoadCountriesTests: CountriesInteractorTests {
199199 countries. updatesRecorder. sink  {  updates in 
200200 XCTAssertEqual ( updates,  [ 
201201 . notRequested, 
202-  . isLoading( last:  nil ,  cancelBag:  CancelBag ( ) ) , 
202+  . isLoading( last:  nil ,  cancelBag:  . test ) , 
203203 . failed( error) 
204204 ] ,  removing:  Country . prefixes) 
205205 self . mockedWebRepo. verify ( ) 
@@ -236,7 +236,7 @@ final class LoadCountryDetailsTests: CountriesInteractorTests {
236236 details. updatesRecorder. sink  {  updates in 
237237 XCTAssertEqual ( updates,  [ 
238238 . notRequested, 
239-  . isLoading( last:  nil ,  cancelBag:  CancelBag ( ) ) , 
239+  . isLoading( last:  nil ,  cancelBag:  . test ) , 
240240 . loaded( data. details) 
241241 ] ,  removing:  Country . prefixes) 
242242 self . mockedWebRepo. verify ( ) 
@@ -270,7 +270,7 @@ final class LoadCountryDetailsTests: CountriesInteractorTests {
270270 details. updatesRecorder. sink  {  updates in 
271271 XCTAssertEqual ( updates,  [ 
272272 . notRequested, 
273-  . isLoading( last:  nil ,  cancelBag:  CancelBag ( ) ) , 
273+  . isLoading( last:  nil ,  cancelBag:  . test ) , 
274274 . failed( error) 
275275 ] ,  removing:  Country . prefixes) 
276276 self . mockedWebRepo. verify ( ) 
@@ -307,7 +307,7 @@ final class LoadCountryDetailsTests: CountriesInteractorTests {
307307 details. updatesRecorder. sink  {  updates in 
308308 XCTAssertEqual ( updates,  [ 
309309 . notRequested, 
310-  . isLoading( last:  nil ,  cancelBag:  CancelBag ( ) ) , 
310+  . isLoading( last:  nil ,  cancelBag:  . test ) , 
311311 . failed( error) 
312312 ] ,  removing:  Country . prefixes) 
313313 self . mockedWebRepo. verify ( ) 
@@ -343,7 +343,7 @@ final class LoadCountryDetailsTests: CountriesInteractorTests {
343343 details. updatesRecorder. sink  {  updates in 
344344 XCTAssertEqual ( updates,  [ 
345345 . notRequested, 
346-  . isLoading( last:  nil ,  cancelBag:  CancelBag ( ) ) , 
346+  . isLoading( last:  nil ,  cancelBag:  . test ) , 
347347 . loaded( data. details) 
348348 ] ,  removing:  Country . prefixes) 
349349 self . mockedWebRepo. verify ( ) 
0 commit comments