diff --git a/docs/writing/tests.rst b/docs/writing/tests.rst index 05faace7b..62e4ac7d0 100644 --- a/docs/writing/tests.rst +++ b/docs/writing/tests.rst @@ -50,7 +50,7 @@ Some general rules of testing: slightly different than that of running code, where short names are often preferred. The reason is testing functions are never called explicitly. ``square()`` or even ``sqr()`` is ok in running code, but in testing code you - would has names such as ``test_square_of_number_2()``, + would have names such as ``test_square_of_number_2()``, ``test_square_negative_number()``. These function names are displayed when a test fail, and should be as descriptive as possible.