Skip to content

Commit

Permalink
Run swift-format
Browse files Browse the repository at this point in the history
  • Loading branch information
stephencelis authored and github-actions[bot] committed Feb 28, 2024
1 parent b4a3d04 commit b070b76
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Sources/ComposableArchitecture/TestStore.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1969,7 +1969,7 @@ extension TestStore where State: Equatable {
file: StaticString = #file,
line: UInt = #line
) async -> TestStoreTask {
await self.send(action(), assert: updateStateToExpectedResult, file: file, line: line)
await self.send(action(), assert: updateStateToExpectedResult, file: file, line: line)
}

/// Sends an action to the store and asserts when state changes.
Expand Down Expand Up @@ -2008,7 +2008,7 @@ extension TestStore where State: Equatable {
file: StaticString = #file,
line: UInt = #line
) async -> TestStoreTask {
await self.send(action(value), assert: updateStateToExpectedResult, file: file, line: line)
await self.send(action(value), assert: updateStateToExpectedResult, file: file, line: line)
}
}

Expand Down
4 changes: 2 additions & 2 deletions Tests/ComposableArchitectureTests/TestStoreTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@
await store.send(.tap)
await store.receive(\.delegate.success, 43)
}

func testSendCaseKeyPath() async {
let store = TestStore<Int, Action>(initialState: 0) {
Reduce { state, action in
Expand Down Expand Up @@ -625,4 +625,4 @@
case delete(IndexSet)
}
}
#endif
#endif

0 comments on commit b070b76

Please sign in to comment.