Skip to content

Commit af93863

Browse files
committed
minor wording changes
1 parent f76dd1e commit af93863

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Python/Module5_OddsAndEnds/Testing_Your_Code.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@ To run this test, we simply call the function:
123123
```
124124

125125
and... voilà? Wait, nothing happened.
126-
Indeed, this is the expected behavior: our test function should either run successfully and complete "silently", or it should raise an error if one of our assertions failed.
126+
Indeed, this is the expected behavior: our test function should either run successfully and complete "silently", or it should raise an error if one of our assertions failed to hold true.
127127
This is exactly the behavior afforded to us by the `assert` statements that we included in our tests.
128-
Let's take some time to understand how `assert` statements work, and how we should use them.
128+
Let's take a moment to understand how `assert` statements work, and how we should use them.
129129
<!-- #endregion -->
130130

131131
<!-- #region -->

0 commit comments

Comments
 (0)