asyrjasalo / RESTinstance

Robot Framework library for RESTful JSON APIs
https://asyrjasalo.github.io/RESTinstance
GNU Lesser General Public License v3.0
204 stars 84 forks source link

Set Client Cert cannot accept string as list #138

Closed kivipe closed 1 year ago

kivipe commented 1 year ago

Set Client Cert keyword documentation is wrong. It says:

| Set Client Cert | ["${CURDIR}/client.cert", "${CURDIR}/client.key"] |

Robot Framework cannot convert this to a list, and this is passed as a string to the keyword. This line should be removed or changed to

| Set Client Cert | ${CURDIR}/client.pem | | ${paths_list} | Create List | ${CURDIR}/client.cert | ${CURDIR}/client.key | | Set Client Cert | ${paths_list} |

github-actions[bot] commented 1 year ago

This issue is stale because it has been open for 30 days with no activity.

github-actions[bot] commented 1 year ago

This issue was closed because it has been inactive for 14 days since being marked as stale.