Skip to content

Commit 4aab217

Browse files
authored
Fix assertion values (#2128)
1 parent 40d1f53 commit 4aab217

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/ComposableArchitecture/Documentation.docc/Tutorials/03-04-code-0008.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ final class CounterFeatureTests: XCTestCase {
1313
await store.send(.factButtonTapped) {
1414
$0.isLoading = true
1515
}
16-
await store.receive(.factResponse("0 is a good number")) {
16+
await store.receive(.factResponse("0 is a good number.")) {
1717
$0.isLoading = false
18-
$0.fact = "0 is a good number"
18+
$0.fact = "0 is a good number."
1919
}
2020
}
2121
}

0 commit comments

Comments
 (0)