diff options
| author | Adam Taylor <ataylor32@gmail.com> | 2015-01-20 07:54:12 -0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-01-20 12:18:03 -0500 |
| commit | 039465a6a7a18f48ea77ceadb6949990c0ec92e1 (patch) | |
| tree | cba4538131d680c040535e9ffe3af7c1db034655 /tests/basic | |
| parent | dccf41cff0f46a94aa1d853d1bad9052079bb454 (diff) | |
Fixed typos in code comments.
Diffstat (limited to 'tests/basic')
| -rw-r--r-- | tests/basic/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basic/tests.py b/tests/basic/tests.py index 3ba94d058d..72fdbaa8d8 100644 --- a/tests/basic/tests.py +++ b/tests/basic/tests.py @@ -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) |
