We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddb758a commit 0a00e73Copy full SHA for 0a00e73
Tests/ComposableArchitectureTests/EffectOperationTests.swift
@@ -105,12 +105,12 @@ class EffectOperationTests: XCTestCase {
105
try await Task.sleep(nanoseconds: NSEC_PER_SEC / 10)
106
return 42
107
}
108
- .merge(
109
- with: .task {
110
- try await Task.sleep(nanoseconds: NSEC_PER_SEC / 5)
111
- return 1729
112
- }
113
- )
+ .merge(
+ with: .task {
+ try await Task.sleep(nanoseconds: NSEC_PER_SEC / 5)
+ return 1729
+ }
+ )
114
switch effect.operation {
115
case let .run(_, send):
116
await send(.init(send: { values.append($0) }))
0 commit comments