Skip to content

Commit 7c4a834

Browse files
author
Jon Wayne Parrott
committed
Fixing lint errors
Change-Id: Idad9a029514d7f80b8b64b6d89998d7de273a347
1 parent 77b9b97 commit 7c4a834

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

appengine/images/api/main_test.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
# limitations under the License.
1414

1515
import main
16-
import pytest
1716
import mock
17+
import pytest
1818
import webtest
1919

2020

@@ -30,10 +30,9 @@ def test_img(app):
3030
photo = main.Photo(
3131
id=234
3232
)
33-
photo.title='asdf'
34-
photo.full_size_image=b'123'
33+
photo.title = 'asdf'
34+
photo.full_size_image = b'123'
3535
photo.put()
36-
print photo.key.id()
3736

3837
response = app.get('/img?id=%s' % photo.key.id())
3938

0 commit comments

Comments
 (0)