Skip to content

Commit 13eb272

Browse files
committed
Remove availabilities older than the test deployment target
1 parent 3cab90e commit 13eb272

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
var source = Data()
16781675
var span = source.mutableSpan
@@ -1695,7 +1692,6 @@ private final class DataTests {
16951692
}
16961693

16971694
@Test
1698-
@available(macOS 10.14.4, iOS 12.2, watchOS 5.2, tvOS 12.2, *)
16991695
func inlineSliceDataMutableSpan() throws {
17001696
var source = Data(0..<100)
17011697
let count = source.count
@@ -1708,7 +1704,6 @@ private final class DataTests {
17081704
}
17091705

17101706
@Test
1711-
@available(macOS 10.14.4, iOS 12.2, watchOS 5.2, tvOS 12.2, *)
17121707
func inlineDataMutableRawSpan() throws {
17131708
var source = Data()
17141709
var span = source.mutableBytes
@@ -1730,7 +1725,6 @@ private final class DataTests {
17301725
}
17311726

17321727
@Test
1733-
@available(macOS 10.14.4, iOS 12.2, watchOS 5.2, tvOS 12.2, *)
17341728
func inlineSliceDataMutableRawSpan() throws {
17351729
var source = Data(0..<100)
17361730
let count = source.count
@@ -2388,7 +2382,6 @@ extension DataTests {
23882382
@Suite("Large Data Tests", .serialized)
23892383
struct LargeDataTests {
23902384
@Test
2391-
@available(macOS 10.14.4, iOS 12.2, watchOS 5.2, tvOS 12.2, *)
23922385
func largeSliceDataSpan() throws {
23932386
#if _pointerBitWidth(_64)
23942387
let count = Int(Int32.max)
@@ -2406,7 +2399,6 @@ struct LargeDataTests {
24062399
}
24072400

24082401
@Test
2409-
@available(macOS 10.14.4, iOS 12.2, watchOS 5.2, tvOS 12.2, *)
24102402
func largeSliceDataMutableSpan() throws {
24112403
#if _pointerBitWidth(_64)
24122404
var count = Int(Int32.max)
@@ -2430,7 +2422,6 @@ struct LargeDataTests {
24302422
}
24312423

24322424
@Test
2433-
@available(macOS 10.14.4, iOS 12.2, watchOS 5.2, tvOS 12.2, *)
24342425
func largeSliceDataMutableRawSpan() throws {
24352426
#if _pointerBitWidth(_64)
24362427
var count = Int(Int32.max)

0 commit comments

Comments
 (0)