Skip to content

Commit b86e601

Browse files
committed
wip
1 parent 1a6c971 commit b86e601

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/ComposableArchitectureTests/StoreTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1216,8 +1216,8 @@ final class StoreTests: BaseTCATestCase {
12161216

12171217
@MainActor
12181218
func testInitialAction() async {
1219-
let store = Store(initialState: 0, initialAction: ()) {
1220-
Reduce { state, _ in
1219+
let store = Store<Int, Void>(initialState: 0, initialAction: ()) {
1220+
Reduce<Int, Void> { state, _ in
12211221
state += 1
12221222
return .none
12231223
}

0 commit comments

Comments
 (0)