Skip to content

Commit 1303ebc

Browse files
author
ctranxuan
committed
fix(typo)
1 parent 565dd06 commit 1303ebc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Part 4 - Concurrency/2. Testing Rx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ This is useful for testing small, self-contained pieces of Rx code, such as cust
176176

177177
### TestSubscriber
178178

179-
In the test above, we manually collected the values emitted and compared them against what we expected. This process is common enough in tests that Rx comes packaged with `TestScubscriber`, which will do that for us. Its event handlers will collect every notification received and make them available for us to inspect. With `TestSubscriber` our [previous test becomes](/tests/java/itrx/chapter4/testing/TestSubscriberExample.java):
179+
In the test above, we manually collected the values emitted and compared them against what we expected. This process is common enough in tests that Rx comes packaged with `TestSubscriber`, which will do that for us. Its event handlers will collect every notification received and make them available for us to inspect. With `TestSubscriber` our [previous test becomes](/tests/java/itrx/chapter4/testing/TestSubscriberExample.java):
180180

181181
```java
182182
@Test

0 commit comments

Comments
 (0)