File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Sources/ComposableArchitecture/Internal
Tests/ComposableArchitectureTests Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 22 public typealias _SendableAnyKeyPath = any AnyKeyPath & Sendable
33 public typealias _SendablePartialKeyPath < Root> = any PartialKeyPath < Root > & Sendable
44 public typealias _SendableKeyPath < Root, Value> = any KeyPath < Root , Value > & Sendable
5- public typealias _SendableWritableKeyPath < Root, Value> = any WritableKeyPath < Root , Value > & Sendable
5+ public typealias _SendableWritableKeyPath < Root, Value> = any WritableKeyPath < Root , Value >
6+ & Sendable
67 public typealias _SendableReferenceWritableKeyPath < Root, Value> = any ReferenceWritableKeyPath <
78 Root , Value
89 >
1415 public typealias _SendablePartialKeyPath < Root> = PartialKeyPath < Root >
1516 public typealias _SendableKeyPath < Root, Value> = KeyPath < Root , Value >
1617 public typealias _SendableWritableKeyPath < Root, Value> = WritableKeyPath < Root , Value >
17- public typealias _SendableReferenceWritableKeyPath < Root, Value> = ReferenceWritableKeyPath < Root , Value >
18+ public typealias _SendableReferenceWritableKeyPath < Root, Value> = ReferenceWritableKeyPath <
19+ Root , Value
20+ >
1821 public typealias _SendablePartialCaseKeyPath < Root> = PartialCaseKeyPath < Root >
1922 public typealias _SendableCaseKeyPath < Root, Value> = CaseKeyPath < Root , Value >
2023#endif
Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ final class EffectTests: BaseTCATestCase {
5050 await withMainSerialExecutor {
5151 let values = LockIsolated < [ Int ] > ( [ ] )
5252
53-
5453 let effect = Effect< Int> . concatenate(
5554 . publisher { Just ( 1 ) . delay ( for: 1 , scheduler: self . mainQueue) }
5655 )
You can’t perform that action at this time.
0 commit comments