Dictionary testapp.cookies has invalid value after call testapp.set_cookie():
>>> from webtest import TestApp
>>> from webtest.debugapp import debug_app
>>> testapp = TestApp(debug_app)
>>> name, val = 'c', '123'
>>> testapp.set_cookie(name, val)
>>> c_val = testapp.cookies.get(name)
>>> val == c_val
False
>>> val
'123'
>>> c_val
'"123"'
Dictionary testapp.cookies has invalid value after call testapp.set_cookie():