Skip to content

Commit 542c371

Browse files
committed
wip
1 parent 6e08278 commit 542c371

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

Tests/ComposableArchitectureTests/ObservableTests.swift

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import Combine
22
import ComposableArchitecture
33
import XCTest
44

5-
@available(iOS 17, macOS 14, tvOS 17, watchOS 10, *)
65
final class ObservableTests: BaseTCATestCase {
76
func testBasics() async {
87
var state = ChildState()
@@ -660,7 +659,6 @@ final class ObservableTests: BaseTCATestCase {
660659
}
661660
}
662661

663-
@available(iOS 17, macOS 14, tvOS 17, watchOS 10, *)
664662
@ObservableState
665663
private struct ChildState: Equatable, Identifiable {
666664
let id = UUID()
@@ -675,7 +673,6 @@ private struct ChildState: Equatable, Identifiable {
675673
self
676674
}
677675
}
678-
@available(iOS 17, macOS 14, tvOS 17, watchOS 10, *)
679676
@ObservableState
680677
private struct ParentState: Equatable {
681678
var child = ChildState()
@@ -692,7 +689,6 @@ private struct ParentState: Equatable {
692689
self.sibling = childCopy
693690
}
694691
}
695-
@available(iOS 17, macOS 14, tvOS 17, watchOS 10, *)
696692
@dynamicMemberLookup
697693
@CasePathable
698694
@ObservableState
@@ -701,7 +697,6 @@ private enum DestinationState: Equatable {
701697
case child2(ChildState)
702698
case inert(Int)
703699
}
704-
@available(iOS 17, macOS 14, tvOS 17, watchOS 10, *)
705700
@ObservableState
706701
private enum EnumState: Equatable {
707702
case count(Count)

0 commit comments

Comments
 (0)