From 430ceb35c6c3d073b89549d9a83db23d42f46ea2 Mon Sep 17 00:00:00 2001 From: Soumya <14910227+soumyas567@users.noreply.github.com> Date: Mon, 7 Mar 2022 21:54:07 +0000 Subject: [PATCH] Update getting-started.rst In the first example, the point that the test function and .py file should be prefixed or suffixed with 'test' is missing. It would be better if it is mentioned in the first example itself. So Added an extra phrase emphasizing to name the file as test_sample.py --- doc/en/getting-started.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/getting-started.rst b/doc/en/getting-started.rst index 8129565df..ab1688f89 100644 --- a/doc/en/getting-started.rst +++ b/doc/en/getting-started.rst @@ -35,7 +35,7 @@ Install ``pytest`` Create your first test ---------------------------------------------------------- -Create a simple test function with just four lines of code: +Create a Python file test_sample.py and write a simple test function with just four lines of code: .. code-block:: python