Skip to content

Commit 1f9b131

Browse files
committed
chore: spelling & formatting
1 parent 91abce4 commit 1f9b131

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

episodes/02-simple-tests.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Now, let's run the test. We can do this by running the following command in the
9292
This command tells pytest to run all the tests in the current directory.
9393

9494
When you run the test, you should see that the test runs successfully, indicated
95-
by some <span style="color:green">**green**</span>. text in the terminal. We will go through the output and what it means
95+
by some <span style="color:green">**green**</span> text in the terminal. We will go through the output and what it means
9696
in the next lesson, but for now, know that <span style="color:green">**green**</span> means that the test passed, and <span style="color:red">**red**</span>
9797
means that the test failed.
9898

episodes/04-unit-tests-best-practices.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ exercises: 2
77
:::::::::::::::::::::::::::::::::::::: questions
88

99
- What to do about complex functions & tests?
10-
- What are some testing best practices for testing?
10+
- What are some best practices for testing?
1111
- How far should I go with testing?
1212
- How do I add tests to an existing project?
1313

episodes/06-testing-data-structures.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ def calculate_player_total_scores(participants: dict):
344344
"total_score": 24
345345
},
346346
}
347-
""""
347+
"""
348348

349349
for player in participants:
350350
participants[player]["total_score"] = np.sum(participants[player]["scores"])

0 commit comments

Comments
 (0)