@@ -119,7 +119,6 @@ class IntegrationTests: XCTestCase {
119119    } 
120120  } 
121121
122-   @available ( iOS 13 ,  tvOS 13 ,  macOS 10 . 15 ,  macCatalyst 13 ,  watchOS 7 ,  * )  
123122  func  testDataAsync( )  async  throws  { 
124123    let  data  =  DataTestRequest ( 
125124      bool:  true , 
@@ -174,7 +173,6 @@ class IntegrationTests: XCTestCase {
174173    } 
175174  } 
176175
177-   @available ( iOS 13 ,  tvOS 13 ,  macOS 10 . 15 ,  macCatalyst 13 ,  watchOS 7 ,  * )  
178176  func  testScalarAsync( )  async  throws  { 
179177    let  byName  =  functions. httpsCallable ( 
180178      " scalarTest " , 
@@ -193,7 +191,6 @@ class IntegrationTests: XCTestCase {
193191    } 
194192  } 
195193
196-   @available ( iOS 13 ,  tvOS 13 ,  macOS 10 . 15 ,  macCatalyst 13 ,  watchOS 7 ,  * )  
197194  func  testScalarAsyncAlternateSignature( )  async  throws  { 
198195    let  byName :  Callable < Int16 ,  Int >  =  functions. httpsCallable ( " scalarTest " ) 
199196    let  byURL :  Callable < Int16 ,  Int >  =  functions. httpsCallable ( emulatorURL ( " scalarTest " ) ) 
@@ -241,7 +238,6 @@ class IntegrationTests: XCTestCase {
241238    } 
242239  } 
243240
244-   @available ( iOS 13 ,  tvOS 13 ,  macOS 10 . 15 ,  macCatalyst 13 ,  watchOS 7 ,  * )  
245241  func  testTokenAsync( )  async  throws  { 
246242    // Recreate functions with a token.
247243    let  functions  =  Functions ( 
@@ -297,7 +293,6 @@ class IntegrationTests: XCTestCase {
297293    } 
298294  } 
299295
300-   @available ( iOS 13 ,  tvOS 13 ,  macOS 10 . 15 ,  macCatalyst 13 ,  watchOS 7 ,  * )  
301296  func  testFCMTokenAsync( )  async  throws  { 
302297    let  byName  =  functions. httpsCallable ( 
303298      " FCMTokenTest " , 
@@ -342,7 +337,6 @@ class IntegrationTests: XCTestCase {
342337    } 
343338  } 
344339
345-   @available ( iOS 13 ,  tvOS 13 ,  macOS 10 . 15 ,  macCatalyst 13 ,  watchOS 7 ,  * )  
346340  func  testNullAsync( )  async  throws  { 
347341    let  byName  =  functions. httpsCallable ( 
348342      " nullTest " , 
@@ -391,7 +385,6 @@ class IntegrationTests: XCTestCase {
391385    } 
392386  } 
393387
394-   @available ( iOS 13 ,  tvOS 13 ,  macOS 10 . 15 ,  macCatalyst 13 ,  watchOS 7 ,  * )  
395388  func  testMissingResultAsync( )  async  { 
396389    let  byName  =  functions. httpsCallable ( 
397390      " missingResultTest " , 
@@ -445,7 +438,6 @@ class IntegrationTests: XCTestCase {
445438    } 
446439  } 
447440
448-   @available ( iOS 13 ,  tvOS 13 ,  macOS 10 . 15 ,  macCatalyst 13 ,  watchOS 7 ,  * )  
449441  func  testUnhandledErrorAsync( )  async  { 
450442    let  byName  =  functions. httpsCallable ( 
451443      " unhandledErrorTest " , 
@@ -498,7 +490,6 @@ class IntegrationTests: XCTestCase {
498490    waitForExpectations ( timeout:  5 ) 
499491  } 
500492
501-   @available ( iOS 13 ,  tvOS 13 ,  macOS 10 . 15 ,  macCatalyst 13 ,  watchOS 7 ,  * )  
502493  func  testUnknownErrorAsync( )  async  { 
503494    let  byName  =  functions. httpsCallable ( 
504495      " unknownErrorTest " , 
@@ -553,7 +544,6 @@ class IntegrationTests: XCTestCase {
553544    } 
554545  } 
555546
556-   @available ( iOS 13 ,  tvOS 13 ,  macOS 10 . 15 ,  macCatalyst 13 ,  watchOS 7 ,  * )  
557547  func  testExplicitErrorAsync( )  async  { 
558548    let  byName  =  functions. httpsCallable ( 
559549      " explicitErrorTest " , 
@@ -608,7 +598,6 @@ class IntegrationTests: XCTestCase {
608598    } 
609599  } 
610600
611-   @available ( iOS 13 ,  tvOS 13 ,  macOS 10 . 15 ,  macCatalyst 13 ,  watchOS 7 ,  * )  
612601  func  testHttpErrorAsync( )  async  { 
613602    let  byName  =  functions. httpsCallable ( 
614603      " httpErrorTest " , 
@@ -661,7 +650,6 @@ class IntegrationTests: XCTestCase {
661650    } 
662651  } 
663652
664-   @available ( iOS 13 ,  tvOS 13 ,  macOS 10 . 15 ,  macCatalyst 13 ,  watchOS 7 ,  * )  
665653  func  testThrowErrorAsync( )  async  { 
666654    let  byName  =  functions. httpsCallable ( 
667655      " throwTest " , 
@@ -716,7 +704,6 @@ class IntegrationTests: XCTestCase {
716704    } 
717705  } 
718706
719-   @available ( iOS 13 ,  tvOS 13 ,  macOS 10 . 15 ,  macCatalyst 13 ,  watchOS 7 ,  * )  
720707  func  testTimeoutAsync( )  async  { 
721708    var  byName  =  functions. httpsCallable ( 
722709      " timeoutTest " , 
@@ -778,7 +765,6 @@ class IntegrationTests: XCTestCase {
778765    } 
779766  } 
780767
781-   @available ( iOS 13 ,  tvOS 13 ,  macOS 10 . 15 ,  macCatalyst 13 ,  watchOS 7 ,  * )  
782768  func  testCallAsFunctionAsync( )  async  throws  { 
783769    let  data  =  DataTestRequest ( 
784770      bool:  true , 
@@ -841,7 +827,6 @@ class IntegrationTests: XCTestCase {
841827    } 
842828  } 
843829
844-   @available ( iOS 13 ,  tvOS 13 ,  macOS 10 . 15 ,  macCatalyst 13 ,  watchOS 7 ,  * )  
845830  func  testInferredTyesAsync( )  async  throws  { 
846831    let  data  =  DataTestRequest ( 
847832      bool:  true , 
0 commit comments