Skip to content

Commit f7c306e

Browse files
committed
minor typos
1 parent df402a1 commit f7c306e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/writing/tests.rst

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

2121
- Try hard to make tests that run fast. If one single test needs more than a
2222
few millisecond to run, development will be slowed down or the tests will not
23-
be run as often as desirable. In some cases, test can't be fast because they
23+
be run as often as desirable. In some cases, tests can't be fast because they
2424
need a complex data structure to work on, and this data structure must be
2525
loaded every time the test runs. Keep these heavier tests in a separate test
2626
suite that is run by some scheduled task, and run all other tests as often
@@ -34,10 +34,10 @@ Some general rules of testing:
3434
after. This will give you more confidence that you did not break anything in
3535
the rest of the code.
3636

37-
- It is a good idea to implement a hook that runs all test before pushing code
37+
- It is a good idea to implement a hook that runs all tests before pushing code
3838
to a shared repository.
3939

40-
- If you are in the middle of a development and have to interrupt your work, it
40+
- If you are in the middle of a development session and have to interrupt your work, it
4141
is a good idea to write a broken unit test about what you want to develop next.
4242
When coming back to work, you will have a pointer to where you were and get
4343
faster on tracks.

0 commit comments

Comments
 (0)