From 7c4a834c4f54360aaa9d5f1de04abb6b0f29f31d Mon Sep 17 00:00:00 2001 From: Jon Wayne Parrott Date: Fri, 22 Apr 2016 09:58:36 -0700 Subject: [PATCH] Fixing lint errors Change-Id: Idad9a029514d7f80b8b64b6d89998d7de273a347 --- appengine/images/api/main_test.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/appengine/images/api/main_test.py b/appengine/images/api/main_test.py index 8eea85195df2..68e7808f6227 100644 --- a/appengine/images/api/main_test.py +++ b/appengine/images/api/main_test.py @@ -13,8 +13,8 @@ # limitations under the License. import main -import pytest import mock +import pytest import webtest @@ -30,10 +30,9 @@ def test_img(app): photo = main.Photo( id=234 ) - photo.title='asdf' - photo.full_size_image=b'123' + photo.title = 'asdf' + photo.full_size_image = b'123' photo.put() - print photo.key.id() response = app.get('/img?id=%s' % photo.key.id())