Skip to content

Commit e7f0d1f

Browse files
committed
Minor fixes for writing/tests.
1 parent c3b3e76 commit e7f0d1f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/writing/tests.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Some general rules of testing:
4444

4545
- The first step when you are debugging your code is to write a new test
4646
pinpointing the bug. While it is not always possible to do, those bug
47-
catching test are among the most valuable pieces of code in your project.
47+
catching tests are among the most valuable pieces of code in your project.
4848

4949
- Use long and descriptive names for testing functions. The style guide here
5050
is slightly different than that of running code, where short names are
@@ -66,8 +66,8 @@ Some general rules of testing:
6666
testing code is often the best they can do. They will or should discover the
6767
hot spots, where most difficulties arise, and the corner cases. If they have
6868
to add some functionality, the first step should be to add a test and, by this
69-
mean, ensure the new functionality is not already a working path that has not
70-
been plugged in the interface.
69+
means, ensure the new functionality is not already a working path that has not
70+
been plugged into the interface.
7171

7272
The Basics
7373
::::::::::

0 commit comments

Comments
 (0)