diff options
Diffstat (limited to 'tests/prefetch_related/tests.py')
| -rw-r--r-- | tests/prefetch_related/tests.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/prefetch_related/tests.py b/tests/prefetch_related/tests.py index 4ee58f0a8a..15ba01c1c5 100644 --- a/tests/prefetch_related/tests.py +++ b/tests/prefetch_related/tests.py @@ -443,9 +443,9 @@ class ForeignKeyToFieldTest(TestCase): self.assertEqual( favorites, [ - ([six.text_type(self.author2)],[six.text_type(self.author3)]), - ([six.text_type(self.author3)],[six.text_type(self.author1)]), - ([six.text_type(self.author1)],[six.text_type(self.author2)]) + ([six.text_type(self.author2)], [six.text_type(self.author3)]), + ([six.text_type(self.author3)], [six.text_type(self.author1)]), + ([six.text_type(self.author1)], [six.text_type(self.author2)]) ] ) |
