mirror of
https://github.com/django/django.git
synced 2025-11-01 04:17:59 +00:00
Fixed typos in code comments.
This commit is contained in:
parent
dccf41cff0
commit
039465a6a7
26 changed files with 28 additions and 28 deletions
|
|
@ -357,7 +357,7 @@ class ModelTest(TestCase):
|
|||
Article.objects.create(headline=lazy, pub_date=datetime.now())
|
||||
article = Article.objects.get()
|
||||
self.assertEqual(article.headline, notlazy)
|
||||
# test that assign + save works with Promise objecs
|
||||
# test that assign + save works with Promise objects
|
||||
article.headline = lazy
|
||||
article.save()
|
||||
self.assertEqual(article.headline, notlazy)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue