python-circleci-docker
python-circleci-docker copied to clipboard
Turn message in test_hello_world.py into bytes
response.data is in byte. Direct comparing response.data to message, which is a string, leads to failure in the second test. Turning message into bytes resolves this issue and the second test succeeds (only tested in Python3).