Skip to content

Commit

Permalink
Fixing lint errors
Browse files Browse the repository at this point in the history
Change-Id: Idad9a029514d7f80b8b64b6d89998d7de273a347
  • Loading branch information
Jon Wayne Parrott committed Apr 22, 2016
1 parent 77b9b97 commit 7c4a834
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions appengine/images/api/main_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
# limitations under the License.

import main
import pytest
import mock
import pytest
import webtest


Expand All @@ -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())

Expand Down

0 comments on commit 7c4a834

Please sign in to comment.