Skip to content

Commit a544c6c

Browse files
committed
Add clarification
1 parent 4e6e2d5 commit a544c6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/write-easy-test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Think in terms of inputs and outputs. Roughly, this is everything you should tak
3030

3131
Notice how this list does not include elements such as internal methods, or intermediate states or 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)