summaryrefslogtreecommitdiff
path: root/tests/queries
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/queries
parent397b3705c5f762b359cdb494f9447c8a60685adf (diff)
Refs #23919 -- Removed encoding preambles and future imports
Diffstat (limited to 'tests/queries')
-rw-r--r--tests/queries/models.py2
-rw-r--r--tests/queries/test_qs_combinators.py2
-rw-r--r--tests/queries/tests.py2
3 files changed, 0 insertions, 6 deletions
diff --git a/tests/queries/models.py b/tests/queries/models.py
index 67a28e950e..8c1ba59b67 100644
--- a/tests/queries/models.py
+++ b/tests/queries/models.py
@@ -1,8 +1,6 @@
"""
Various complex queries that have been problematic in the past.
"""
-from __future__ import unicode_literals
-
import threading
from django.db import models
diff --git a/tests/queries/test_qs_combinators.py b/tests/queries/test_qs_combinators.py
index a0faab2eb7..02a0df216d 100644
--- a/tests/queries/test_qs_combinators.py
+++ b/tests/queries/test_qs_combinators.py
@@ -1,5 +1,3 @@
-from __future__ import unicode_literals
-
from django.db.models import F, IntegerField, Value
from django.db.utils import DatabaseError
from django.test import TestCase, skipIfDBFeature, skipUnlessDBFeature
diff --git a/tests/queries/tests.py b/tests/queries/tests.py
index b0999be3f8..e2dd86bac1 100644
--- a/tests/queries/tests.py
+++ b/tests/queries/tests.py
@@ -1,5 +1,3 @@
-from __future__ import unicode_literals
-
import datetime
import pickle
import unittest