From: Ian Mackinnon Date: Thu, 2 Jul 2015 11:57:04 +0000 (+0200) Subject: Fix unicode syntax for Python 3. X-Git-Tag: v4.3.0b1~91^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=500a2faec0e6e19e01fe571e01286d7baa6d1ac3;p=thirdparty%2Ftornado.git Fix unicode syntax for Python 3. --- diff --git a/tornado/test/auth_test.py b/tornado/test/auth_test.py index 594d33b61..9ea4e00ed 100644 --- a/tornado/test/auth_test.py +++ b/tornado/test/auth_test.py @@ -467,8 +467,8 @@ class GoogleOAuth2UserinfoHandler(RequestHandler): assert self.get_argument('access_token') == 'fake-access-token' # return a fake user self.finish({ - u'name': u'Foo', - u'email': u'foo@example.com' + 'name': 'Foo', + 'email': 'foo@example.com' })