Skip to content

Commit d7be63c

Browse files
committed
remove special variant single quotes
1 parent c0f31d4 commit d7be63c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/code/Writing_Tests/RunUnitTests.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ python3 -m unittest discover <path to test directory>
4343
```
4444
Where `<path to test directory>` is the path to the directory where you tests are stored. If you have followed the steps above you are already in that directory and you just omit this value.
4545

46-
You should see a bunch of dots on the screen (one for each test thats run), and then when its done, you should see a message showing how many tests were run and that they were successful. The whole process should take less a minute or so.
46+
You should see a bunch of dots on the screen (one for each test that's run), and then when it's done, you should see a message showing how many tests were run and that they were successful. The whole process should take less a minute or so.
4747

4848
(If you see any messages about some tests taking more than 0.5s, that's ok.)
4949

@@ -79,7 +79,7 @@ python -m unittest <file name without py extension>.<Class name within file>.<na
7979
```
8080

8181
## Testing the MPF media controller
82-
Remember though that MPF is actually two separate parts, the MPF game engine and the MPF media controller. The command you run just tested the game engine, so now lets test the media controller. To do this, run the following command (basically the same thing as last time but with an “mc” added to the end, like this):
82+
Remember though that MPF is actually two separate parts, the MPF game engine and the MPF media controller. The command you run just tested the game engine, so now let's test the media controller. To do this, run the following command (basically the same thing as last time but with an “mc” added to the end, like this):
8383

8484
``` console
8585
python3 -m unittest discover mpfmc/tests

0 commit comments

Comments
 (0)