Fix argument order in run_fuzzer command example. (#5060)

This commit is contained in:
Stefan Bucur 2021-01-28 11:53:18 -05:00 committed by GitHub
parent d45336243a
commit 41e24edb3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ You can build your docker image and fuzz targets locally, so you can test them b
3. If you want to test changes against a particular fuzz target, run the following command:
```bash
$ python infra/helper.py run_fuzzer $PROJECT_NAME <fuzz_target> --corpus-dir=<path-to-temp-corpus-dir>
$ python infra/helper.py run_fuzzer --corpus-dir=<path-to-temp-corpus-dir> $PROJECT_NAME <fuzz_target>
```
4. We recommend taking a look at your code coverage as a test to ensure that