hurl/integration/tests_failed/assert_query_cookie.err

27 lines
885 B
Plaintext
Raw Normal View History

2022-08-08 19:33:49 +03:00
error: Assert failure
--> tests_failed/assert_query_cookie.hurl:7:0
|
2023-06-18 15:35:03 +03:00
7 | cookie "cookie1[Secure]" == false # This is not valid, Secure attribute exists or not but does have a value
| actual: none
| expected: bool <false>
|
2022-08-08 19:33:49 +03:00
error: Assert failure
--> tests_failed/assert_query_cookie.hurl:11:0
|
2023-06-18 15:35:03 +03:00
11 | cookie "cookie2[Secure]" == true # This is not valid, Secure attribute exists or not but does have a value
| actual: unit
| expected: bool <true>
2020-10-19 18:55:03 +03:00
| >>> types between actual and expected are not consistent
|
2022-08-08 19:33:49 +03:00
error: Assert failure
--> tests_failed/assert_query_cookie.hurl:12:0
2020-10-19 18:55:03 +03:00
|
2023-06-18 15:35:03 +03:00
12 | cookie "cookie2[Secure]" not == true # This is not valid, Secure attribute exists or not but does have a value
2020-10-19 18:55:03 +03:00
| actual: unit
| expected: not bool <true>
| >>> types between actual and expected are not consistent
|