Skip to content

Commit 0180b38

Browse files
committed
Remove availabilities older than the test deployment target
1 parent cc09e33 commit 0180b38

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

Tests/FoundationEssentialsTests/DataTests.swift

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1646,7 +1646,6 @@ private final class DataTests {
16461646
}
16471647

16481648
@Test
1649-
@available(macOS 10.14.4, iOS 12.2, watchOS 5.2, tvOS 12.2, *)
16501649
func inlineDataSpan() throws {
16511650
var source = Data()
16521651
var span = source.span
@@ -1663,7 +1662,6 @@ private final class DataTests {
16631662
}
16641663

16651664
@Test
1666-
@available(macOS 10.14.4, iOS 12.2, watchOS 5.2, tvOS 12.2, *)
16671665
func inlineSliceDataSpan() throws {
16681666
let source = Data(0 ... .max)
16691667
let span = source.span
@@ -1672,7 +1670,6 @@ private final class DataTests {
16721670
}
16731671

16741672
@Test
1675-
@available(macOS 10.14.4, iOS 12.2, watchOS 5.2, tvOS 12.2, *)
16761673
func inlineDataMutableSpan() throws {
16771674
#if !canImport(Darwin) || FOUNDATION_FRAMEWORK
16781675
var source = Data()
@@ -1697,7 +1694,6 @@ private final class DataTests {
16971694
}
16981695

16991696
@Test
1700-
@available(macOS 10.14.4, iOS 12.2, watchOS 5.2, tvOS 12.2, *)
17011697
func inlineSliceDataMutableSpan() throws {
17021698
#if !canImport(Darwin) || FOUNDATION_FRAMEWORK
17031699
var source = Data(0..<100)
@@ -1712,7 +1708,6 @@ private final class DataTests {
17121708
}
17131709

17141710
@Test
1715-
@available(macOS 10.14.4, iOS 12.2, watchOS 5.2, tvOS 12.2, *)
17161711
func inlineDataMutableRawSpan() throws {
17171712
var source = Data()
17181713
var span = source.mutableBytes
@@ -1734,7 +1729,6 @@ private final class DataTests {
17341729
}
17351730

17361731
@Test
1737-
@available(macOS 10.14.4, iOS 12.2, watchOS 5.2, tvOS 12.2, *)
17381732
func inlineSliceDataMutableRawSpan() throws {
17391733
var source = Data(0..<100)
17401734
let count = source.count
@@ -2392,7 +2386,6 @@ extension DataTests {
23922386
@Suite("Large Data Tests", .serialized)
23932387
struct LargeDataTests {
23942388
@Test
2395-
@available(macOS 10.14.4, iOS 12.2, watchOS 5.2, tvOS 12.2, *)
23962389
func largeSliceDataSpan() throws {
23972390
#if _pointerBitWidth(_64)
23982391
let count = Int(Int32.max)
@@ -2410,7 +2403,6 @@ struct LargeDataTests {
24102403
}
24112404

24122405
@Test
2413-
@available(macOS 10.14.4, iOS 12.2, watchOS 5.2, tvOS 12.2, *)
24142406
func largeSliceDataMutableSpan() throws {
24152407
#if _pointerBitWidth(_64)
24162408
var count = Int(Int32.max)
@@ -2434,7 +2426,6 @@ struct LargeDataTests {
24342426
}
24352427

24362428
@Test
2437-
@available(macOS 10.14.4, iOS 12.2, watchOS 5.2, tvOS 12.2, *)
24382429
func largeSliceDataMutableRawSpan() throws {
24392430
#if _pointerBitWidth(_64)
24402431
var count = Int(Int32.max)

0 commit comments

Comments
 (0)