summaryrefslogtreecommitdiff
path: root/tests/m2m_recursive
diff options
context:
space:
mode:
authorRodolfo Carvalho <rhcarvalho@gmail.com>2014-03-02 15:25:53 +0100
committerTim Graham <timograham@gmail.com>2014-03-03 07:38:09 -0500
commit0d912258921a442c48d5787228db2db5af7e8fa5 (patch)
treef6826425de5bca2498c46e5242b870282a34eda2 /tests/m2m_recursive
parent6acaa5238668593d6d854b28dbfa65e95796585c (diff)
Fixed many typos in comments and docstrings.
Thanks Piotr Kasprzyk for help with the patch.
Diffstat (limited to 'tests/m2m_recursive')
-rw-r--r--tests/m2m_recursive/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/m2m_recursive/tests.py b/tests/m2m_recursive/tests.py
index fe13b27239..8ab86aaaee 100644
--- a/tests/m2m_recursive/tests.py
+++ b/tests/m2m_recursive/tests.py
@@ -168,12 +168,12 @@ class RecursiveM2MTests(TestCase):
attrgetter("name"),
ordered=False
)
- # As the assertQuerysetEqual uses a set for comparrison,
+ # As the assertQuerysetEqual uses a set for comparison,
# check we've only got David listed once
self.assertEqual(self.a.idols.all().count(), 1)
def test_recursive_m2m_related_to_self(self):
- """ Check the expected behaviour when an instance is related to itself """
+ """ Check the expected behavior when an instance is related to itself """
# Ann idolizes herself
self.a.idols.add(self.a)