Skip to content

Commit 6935e35

Browse files
committed
Change curly brackets to angled in tests.md
1 parent 232c895 commit 6935e35

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

exercises/shared/.docs/tests.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,32 +13,32 @@ Extended information can be found in our website [Python testing guide][Python t
1313

1414
### Running Tests
1515

16-
To run the included tests, navigate to the folder where the exercise is stored using `cd` in your terminal (_replace `{exercise-folder-location}` below with your path_).
16+
To run the included tests, navigate to the folder where the exercise is stored using `cd` in your terminal (_replace `<exercise-folder-location>` below with your path_).
1717
Test files usually end in `_test.py`, and are the same tests that run on the website when a solution is uploaded.
1818

1919
Linux/MacOS
2020
```bash
21-
$ cd {path/to/exercise-folder-location}
21+
$ cd <path/to/exercise-folder-location>
2222
```
2323

2424
Windows
2525
```powershell
26-
PS C:\Users\foobar> cd {path\to\exercise-folder-location}
26+
PS C:\Users\foobar> cd <path\to\exercise-folder-location>
2727
```
2828

2929
<br>
3030

31-
Next, run the `pytest` command in your terminal, replacing `{exercise_test.py}` with the name of the test file:
31+
Next, run the `pytest` command in your terminal, replacing `<exercise_test.py>` with the name of the test file:
3232

3333
Linux/MacOS
3434
```bash
35-
$ python3 -m pytest -o markers=task {exercise_test.py}
35+
$ python3 -m pytest -o markers=task <exercise_test.py>
3636
==================== 7 passed in 0.08s ====================
3737
```
3838

3939
Windows
4040
```powershell
41-
PS C:\Users\foobar> py -m pytest -o markers=task {exercise_test.py}
41+
PS C:\Users\foobar> py -m pytest -o markers=task <exercise_test.py>
4242
==================== 7 passed in 0.08s ====================
4343
```
4444

0 commit comments

Comments
 (0)