Skip to content

Commit 4a3d203

Browse files
authored
Fix test dependency name in README (#1261)
1 parent 05bff83 commit 4a3d203

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/torchaudio_unittest/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ https://docs.pytest.org/ for the detail of how to use `pytest` command.
88
For testing, the following packages are needed:
99

1010
```bash
11-
pip install typing pytest scipy numpy parametrized
11+
pip install typing pytest scipy numpy parameterized
1212
```
1313

1414
Make sure to follow the installation instruction in the [contributing
@@ -40,7 +40,7 @@ We use PyTorch's test utilities instead of `pytest` frameworks when writing test
4040
Also, while we recommend using `pytest` for *running* the tests, we cannot
4141
make `pytest` a testing dependency of `torchaudio`. As a result, you should
4242
not import `pytest` or its submodules in the test files; Use the Python
43-
`unittest` builtin module instead, or the `parametrized` package to
43+
`unittest` builtin module instead, or the `parameterized` package to
4444
parametrize tests.
4545

4646
## Structure of tests

0 commit comments

Comments
 (0)