Fix docs.

This commit is contained in:
jcamiel 2022-11-03 13:33:15 +01:00
parent 67d48bde22
commit 2b1b8df448
No known key found for this signature in database
GPG Key ID: 07FF11CFD55356CC

View File

@ -601,7 +601,7 @@ Optionally, asserts can be refined using filters `count` and `regex`.
GET https://pets.org/cats/cutest
HTTP/1.0 200
[Captures]
[Asserts]
jsonpath "$.cats" count == 12
```
@ -612,7 +612,7 @@ GET https://pets.org/cats/cutest
HTTP/1.0 200
# Cat name are structured like this `meow + id`: for instance `meow123456`
[Captures]
[Asserts]
jsonpath "$.cats[0].name" regex /meow(\d+)/ == "123456"
```