From eb11c5fca0ae826c5306808bfba683e6cc9e918a Mon Sep 17 00:00:00 2001 From: Paolo Melchiorre Date: Thu, 3 Jul 2014 11:46:05 +0200 Subject: Aligned test to code update. --- wkhtmltopdf/tests/tests.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'wkhtmltopdf/tests') diff --git a/wkhtmltopdf/tests/tests.py b/wkhtmltopdf/tests/tests.py index 7365d05..f296c8e 100644 --- a/wkhtmltopdf/tests/tests.py +++ b/wkhtmltopdf/tests/tests.py @@ -78,7 +78,7 @@ class TestViews(TestCase): inline_fileheader = 'inline; filename="{0}"' def test_pdf_response(self): - """Should generate the correct HttpResponse object and mimetype""" + """Should generate the correct HttpResponse object and content type.""" # 404 response = PDFResponse(content='', status=404) self.assertEqual(response.status_code, 404) @@ -130,9 +130,6 @@ class TestViews(TestCase): response = PDFResponse(content=content, content_type='application/x-pdf') self.assertEqual(response['Content-Type'], 'application/x-pdf') - response = PDFResponse(content=content, - mimetype='application/x-pdf') - self.assertEqual(response['Content-Type'], 'application/x-pdf') def test_pdf_template_response(self, show_content=False): """Test PDFTemplateResponse.""" -- cgit v1.2.3