aboutsummaryrefslogtreecommitdiffstats
path: root/wkhtmltopdf/tests/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'wkhtmltopdf/tests/tests.py')
-rw-r--r--wkhtmltopdf/tests/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/wkhtmltopdf/tests/tests.py b/wkhtmltopdf/tests/tests.py
index 5344e09..983e10a 100644
--- a/wkhtmltopdf/tests/tests.py
+++ b/wkhtmltopdf/tests/tests.py
@@ -137,7 +137,7 @@ class TestViews(TestCase):
else:
filename = '.pdf'
self.assertEqual(response['Content-Disposition'],
- 'attachment; filename="{}"'.format(filename))
+ 'attachment; filename="{0}"'.format(filename))
# Content as a direct output
response = PDFResponse(content=content, filename="nospace.pdf",
@@ -161,7 +161,7 @@ class TestViews(TestCase):
else:
filename = '.pdf'
self.assertEqual(response['Content-Disposition'],
- 'attachment; filename="{}"'.format(filename))
+ 'inline; filename="{0}"'.format(filename))
# Content-Type
response = PDFResponse(content=content,