From 4f93bc01af057e4bc08bce2c6674c0c7dce95002 Mon Sep 17 00:00:00 2001 From: symonk Date: Sun, 24 May 2020 16:31:51 +0100 Subject: [PATCH] update terminology of class individuality as per PR feedback --- 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 7dac08892..e8b033fe6 100644 --- a/doc/en/getting-started.rst +++ b/doc/en/getting-started.rst @@ -159,7 +159,7 @@ Grouping tests in classes can be beneficial for the following reasons: * Sharing fixtures for tests only in that particular class * Applying marks at the class level and having them implicitly apply to all tests -Something to be aware of when grouping tests inside classes is that each test does not have the same instance of the class. +Something to be aware of when grouping tests inside classes is that each has a unique instance of the class. Having each test share the same class instance would be very detrimental to test isolation and would promote poor test practices. This is outlined below: