We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d85cfcd commit 96cd800Copy full SHA for 96cd800
tests/driver/suites/load_json.robot
@@ -9,9 +9,9 @@ Test Template Do Nothing
9
10
*** Variables ***
11
@{IGNORED_RESPONSES}= 200 404 400
12
-@{IGNORE_POST_PET}= /pet POST 405
13
-@{IGNORE_POST_PET_ID}= /pet/{petId} post 405
14
-@{IGNORE_POST_ORDER}= /store/order post 405
+${IGNORE_POST_PET}= ${{("/pet", "POST", 405)}}
+${IGNORE_POST_PET_ID}= ${{("/pet/{petId}", "post", 405)}}
+${IGNORE_POST_ORDER}= ${{("/store/order", "post", 405)}}
15
@{IGNORED_TESTS}= ${IGNORE_POST_PET} ${IGNORE_POST_PET_ID} ${IGNORE_POST_ORDER}
16
17
0 commit comments