summaryrefslogtreecommitdiff
path: root/tests/model_fields
diff options
context:
space:
mode:
authorAdam Taylor <ataylor32@gmail.com>2015-01-20 07:54:12 -0700
committerTim Graham <timograham@gmail.com>2015-01-20 12:18:03 -0500
commit039465a6a7a18f48ea77ceadb6949990c0ec92e1 (patch)
treecba4538131d680c040535e9ffe3af7c1db034655 /tests/model_fields
parentdccf41cff0f46a94aa1d853d1bad9052079bb454 (diff)
Fixed typos in code comments.
Diffstat (limited to 'tests/model_fields')
-rw-r--r--tests/model_fields/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model_fields/tests.py b/tests/model_fields/tests.py
index 60a1f419ed..5c8c8109d1 100644
--- a/tests/model_fields/tests.py
+++ b/tests/model_fields/tests.py
@@ -333,7 +333,7 @@ class BooleanFieldTests(unittest.TestCase):
# Test select_related('fk_field_name')
ma = FksToBooleans.objects.select_related('bf').get(pk=m1.id)
- # verify types -- should't be 0/1
+ # verify types -- shouldn't be 0/1
self.assertIsInstance(ma.bf.bfield, bool)
self.assertIsInstance(ma.nbf.nbfield, bool)
# verify values