summaryrefslogtreecommitdiff
path: root/tests/queryset_pickle/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/queryset_pickle/tests.py')
-rw-r--r--tests/queryset_pickle/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/queryset_pickle/tests.py b/tests/queryset_pickle/tests.py
index 7ce4348c1a..077ac6f59c 100644
--- a/tests/queryset_pickle/tests.py
+++ b/tests/queryset_pickle/tests.py
@@ -10,7 +10,7 @@ from .models import Group, Event, Happening, Container, M2MModel
class PickleabilityTestCase(TestCase):
def setUp(self):
- Happening.objects.create() # make sure the defaults are working (#20158)
+ Happening.objects.create() # make sure the defaults are working (#20158)
def assert_pickles(self, qs):
self.assertEqual(list(pickle.loads(pickle.dumps(qs))), list(qs))