From 0506020a7ff1a8fb320977ab803effc6d30e94fa Mon Sep 17 00:00:00 2001 From: Nelson Chen Date: Thu, 13 Mar 2014 15:50:29 -0700 Subject: [PATCH] Update tests.rst s/has names/have names/ --- docs/writing/tests.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.