Skip to content

Commit f88dab5

Browse files
committed
Fix command
1 parent b033487 commit f88dab5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ The project can __never__ have enough tests. To address areas lacking sufficient
257257
where `<pattern>` is a pattern matching a particular path. For example, to test the base math `sin` package
258258

259259
``` bash
260-
$ make TESTS_FILTER=.*/math/base/special/sin/.*
260+
$ make TESTS_FILTER=.*/math/base/special/sin/.* test
261261
```
262262

263263
where the pattern `.*/math/base/special/sin/.*` matches any test file whose absolute path contains `math/base/special/sin`.

docs/development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ $ make TESTS_FILTER=.*/<pattern>/.* test
211211
where `<pattern>` is a pattern matching a particular path. For example, to test only base special math functions
212212

213213
``` bash
214-
$ make TESTS_FILTER=.*/math/base/special/.*
214+
$ make TESTS_FILTER=.*/math/base/special/.* test
215215
```
216216

217217
where the pattern `.*/math/base/special/.*` matches any test file whose absolute path contains `math/base/special`.

0 commit comments

Comments
 (0)