From bf30a38890eee1a3bbb094707712874317d4d8fe Mon Sep 17 00:00:00 2001 From: Gabriel Nick Pivovarov <176077153+gsharpsharp@users.noreply.github.com> Date: Fri, 13 Sep 2024 18:59:22 -0500 Subject: [PATCH] Fix tutorial.md typo about adding tests In the "Adding Python Source Files" section, towards the end when talking about test coverage, the tutorial says we have two options: 1. Override the coverage plugin default setting and disable failure on missing code coverage threshold. 2. Add a test that ensures that the code is properly tested. Then it says: "Being a diligent responsible developer that follows 21-st century best practices we will choose the **first option** and add an appropriate test." The option to add a test would be the second one, not the first one. I change "first option" to "second option" because that appears to be the author's original intent. --- documentation/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/tutorial.md b/documentation/tutorial.md index aca0fb9..7d97a8f 100644 --- a/documentation/tutorial.md +++ b/documentation/tutorial.md @@ -153,7 +153,7 @@ Thus, we have two options: 1. Override the coverage plugin default setting and disable failure on missing code coverage threshold. 2. Add a test that ensures that the code is properly tested. -Being a diligent responsible developer that follows 21-st century best practices we will choose the **first option** +Being a diligent responsible developer that follows 21-st century best practices we will choose the **second option** and add an appropriate test. ## Writing Unit Tests