Skip to content

Commit

Permalink
Merge pull request #51 from GoogleCloudPlatform/images_fix
Browse files Browse the repository at this point in the history
Fix Images Test
  • Loading branch information
Jonathan Wayne Parrott committed Jul 14, 2015
2 parents 40bdb83 + d99f3e0 commit 4f41bdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appengine/images/tests/test_guestbook.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def test_post(self, mock_images):
POST={'content': 'asdf'},
)
response = request.get_response(main.app)
mock_images.resize.assert_called_once()
mock_images.resize.assert_called_once_with(mock.ANY, 32, 32)

# Correct response is a redirect
self.assertEqual(response.status_int, 302)
Expand Down

0 comments on commit 4f41bdf

Please sign in to comment.