robotframework / PythonRemoteServer

Robot Framework remote server implemented with Python
Apache License 2.0
152 stars 83 forks source link

Changes None to '' #56

Closed mkorpela closed 5 years ago

mkorpela commented 5 years ago

Did some tests with remote lib. I just noticed that when running Easter in PythonRemoteServer the None parameter is changed to empty string.. And then "None shall pass" :(

pekkaklarck commented 5 years ago

The reason is that XML-RPC doesn't support None/null that well. I think support for it needs to be enabled on both ends of the connection, and Remote just decided to do None -> "" conversion. I'm not against changing this, but someone needed to test would the change break something.

mkorpela commented 5 years ago

I think I’ll close this one. Just a random observation.