summaryrefslogtreecommitdiff
path: root/tests/model_regress
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/model_regress
parent6acaa5238668593d6d854b28dbfa65e95796585c (diff)
downloaddjango-0d912258921a442c48d5787228db2db5af7e8fa5.tar.gz
Fixed many typos in comments and docstrings.
Thanks Piotr Kasprzyk for help with the patch.
Diffstat (limited to 'tests/model_regress')
-rw-r--r--tests/model_regress/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model_regress/tests.py b/tests/model_regress/tests.py
index b631018828..952ba45aab 100644
--- a/tests/model_regress/tests.py
+++ b/tests/model_regress/tests.py
@@ -140,7 +140,7 @@ class ModelTests(TestCase):
def test_date_filter_null(self):
# Date filtering was failing with NULL date values in SQLite
- # (regression test for #3501, amongst other things).
+ # (regression test for #3501, among other things).
Party.objects.create(when=datetime.datetime(1999, 1, 1))
Party.objects.create()
p = Party.objects.filter(when__month=1)[0]