summaryrefslogtreecommitdiff
path: root/service/test/integration/test_drafts.py
diff options
context:
space:
mode:
Diffstat (limited to 'service/test/integration/test_drafts.py')
-rw-r--r--service/test/integration/test_drafts.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/service/test/integration/test_drafts.py b/service/test/integration/test_drafts.py
index d0505d75..a2c71af4 100644
--- a/service/test/integration/test_drafts.py
+++ b/service/test/integration/test_drafts.py
@@ -94,14 +94,3 @@ class DraftsTest(SoledadTestBase):
self.assertEquals(1, len(drafts))
self.assertEquals('First draft edited', drafts[0].subject)
-
- @defer.inlineCallbacks
- def test_respond_unprocessable_entity_if_draft_to_remove_doesnt_exist(self):
- draft = MailBuilder().with_subject('First draft').build_json()
- yield self.put_mail(draft)[0]
-
- updated_draft = MailBuilder().with_subject('First draft edited').with_ident('NOTFOUND').build_json()
- response, request = self.put_mail(updated_draft)
- yield response
-
- self.assertEquals(422, request.code)