summaryrefslogtreecommitdiff
path: root/tests/test_client
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2016-11-19 18:19:41 +0100
committerClaude Paroz <claude@2xlibre.net>2017-01-18 09:55:19 +0100
commitd7b9aaa366dd54ecc3142c588162e3adc7c2f7ac (patch)
treec7faf11a6f6c14981a08a621c36e6f736b21dd8b /tests/test_client
parent397b3705c5f762b359cdb494f9447c8a60685adf (diff)
downloaddjango-d7b9aaa366dd54ecc3142c588162e3adc7c2f7ac.tar.gz
Refs #23919 -- Removed encoding preambles and future imports
Diffstat (limited to 'tests/test_client')
-rw-r--r--tests/test_client/test_conditional_content_removal.py2
-rw-r--r--tests/test_client/tests.py3
2 files changed, 0 insertions, 5 deletions
diff --git a/tests/test_client/test_conditional_content_removal.py b/tests/test_client/test_conditional_content_removal.py
index 644eb23a06..72bf7f238b 100644
--- a/tests/test_client/test_conditional_content_removal.py
+++ b/tests/test_client/test_conditional_content_removal.py
@@ -1,5 +1,3 @@
-from __future__ import unicode_literals
-
import gzip
import io
diff --git a/tests/test_client/tests.py b/tests/test_client/tests.py
index 8b834e02e0..5981ca319e 100644
--- a/tests/test_client/tests.py
+++ b/tests/test_client/tests.py
@@ -1,4 +1,3 @@
-# -*- coding: utf-8 -*-
"""
Testing using the Test Client
@@ -20,8 +19,6 @@ testing against the contexts and templates produced by a view,
rather than the HTML rendered to the end-user.
"""
-from __future__ import unicode_literals
-
import tempfile
from django.contrib.auth.models import User