summaryrefslogtreecommitdiff
path: root/tests/foreign_object
diff options
context:
space:
mode:
authorYoo In Keun <keun0390@naver.com>2020-02-18 21:54:41 +0900
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-02-19 07:08:23 +0100
commit4ef107e34f752d51fa2cadff30fdd6fd718b026e (patch)
treef6d15b41394cef5fdd8afb844c3d1043402e9467 /tests/foreign_object
parent4d973f593932285cd2f765400d915305d8e7333a (diff)
downloaddjango-4ef107e34f752d51fa2cadff30fdd6fd718b026e.tar.gz
Fixed typos in docs and a test comment.
Diffstat (limited to 'tests/foreign_object')
-rw-r--r--tests/foreign_object/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/foreign_object/tests.py b/tests/foreign_object/tests.py
index b211c6e328..a33f29a38c 100644
--- a/tests/foreign_object/tests.py
+++ b/tests/foreign_object/tests.py
@@ -47,7 +47,7 @@ class MultiColumnFKTests(TestCase):
self.assertEqual((person.id, person.name), (self.bob.id, "Bob"))
def test_get_fails_on_multicolumn_mismatch(self):
- # Membership objects returns DoesNotExist error when the there is no
+ # Membership objects returns DoesNotExist error when there is no
# Person with the same id and country_id
membership = Membership.objects.create(
membership_country_id=self.usa.id, person_id=self.jane.id, group_id=self.cia.id)