Skip to content

Commit e4000ad

Browse files
committed
Remove irrelevant timeout parameter
1 parent d062584 commit e4000ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/ComposableArchitecture/Documentation.docc/Tutorials/03-02-code-0010.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ final class CounterFeatureTests: XCTestCase {
1616
$0.isTimerRunning = true
1717
}
1818
await clock.advance(by: .seconds(1))
19-
await store.receive(.timerTick, timeout: .seconds(2)) {
19+
await store.receive(.timerTick) {
2020
$0.count = 1
2121
}
2222
await store.send(.toggleTimerButtonTapped) {

0 commit comments

Comments
 (0)