| Index: appengine/components/test_support/test_case.py
|
| diff --git a/appengine/components/test_support/test_case.py b/appengine/components/test_support/test_case.py
|
| index a6d9ebbde47510aad948babf8ea9665bffe58053..dbece41704fb5eaf6e50da875705840b5c1b603f 100644
|
| --- a/appengine/components/test_support/test_case.py
|
| +++ b/appengine/components/test_support/test_case.py
|
| @@ -152,13 +152,10 @@ class TestCase(auto_stub.TestCase):
|
| headers = dict(task['headers'])
|
| headers['Content-Length'] = str(len(body))
|
| try:
|
| - response = self.app.post(
|
| - task['url'], body, headers=headers, **kwargs)
|
| + self.app.post(task['url'], body, headers=headers, **kwargs)
|
| except:
|
| logging.error(task)
|
| raise
|
| - # TODO(maruel): Implement task failure.
|
| - self.assertEqual(200, response.status_code)
|
| self._taskqueue_stub.DeleteTask(queue['name'], task['name'])
|
| ran += 1
|
| if not ran:
|
|
|