Skip to content

Commit bf30a38

Browse files
authored
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.
1 parent 886ebda commit bf30a38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

documentation/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ Thus, we have two options:
153153
1. Override the coverage plugin default setting and disable failure on missing code coverage threshold.
154154
2. Add a test that ensures that the code is properly tested.
155155

156-
Being a diligent responsible developer that follows 21-st century best practices we will choose the **first option**
156+
Being a diligent responsible developer that follows 21-st century best practices we will choose the **second option**
157157
and add an appropriate test.
158158

159159
## Writing Unit Tests

0 commit comments

Comments
 (0)