Skip to content

Commit 6b4837b

Browse files
committed
Add clarification
1 parent 4e6e2d5 commit 6b4837b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/guide/write-easy-test.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ Think in terms of inputs and outputs. Roughly, this is everything you should tak
2828

2929
### Everything else is implementation details
3030

31-
Notice how this list does not include elements such as internal methods, or intermediate states or data.
31+
Notice how this list does not include elements such as internal methods, intermediate states or even data.
3232

33-
The rule of thumb is that **a test should not break on a refactor**, that is, when we change its internal implementation without changing its public API. If that happens, it might mean the test relies on implementation details.
33+
The rule of thumb is that **a test should not break on a refactor**, that is, when we change its internal implementation without changing its behavior (that is, without changing its public API). If that happens, it might mean the test relies on implementation details.
3434

3535

3636
## Build smaller components

0 commit comments

Comments
 (0)