mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-28 04:13:33 +03:00
25 lines
569 B
Plaintext
25 lines
569 B
Plaintext
error: Assert Failure
|
|
--> tests/error_assert_value_error.hurl:4:0
|
|
|
|
|
4 | header "content-type" equals "XXX"
|
|
| actual: string <text/html; charset=utf-8>
|
|
| expected: string <XXX>
|
|
|
|
|
|
|
error: Assert Failure
|
|
--> tests/error_assert_value_error.hurl:5:0
|
|
|
|
|
5 | jsonpath "$.id" equals "000001"
|
|
| actual: none
|
|
| expected: string <000001>
|
|
|
|
|
|
|
error: Assert Failure
|
|
--> tests/error_assert_value_error.hurl:6:0
|
|
|
|
|
6 | jsonpath "$.values" includes 100
|
|
| actual: [int <1>, int <2>, int <3>]
|
|
| expected: includes int <100>
|
|
|
|
|
|