From 500a2faec0e6e19e01fe571e01286d7baa6d1ac3 Mon Sep 17 00:00:00 2001 From: Ian Mackinnon Date: Thu, 2 Jul 2015 13:57:04 +0200 Subject: [PATCH] Fix unicode syntax for Python 3. --- tornado/test/auth_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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' }) -- 2.47.2