summaryrefslogtreecommitdiff
path: root/tests/model_fields/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/model_fields/tests.py')
-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 54c13dd0ee..f9d1a76078 100644
--- a/tests/model_fields/tests.py
+++ b/tests/model_fields/tests.py
@@ -300,7 +300,7 @@ class BooleanFieldTests(unittest.TestCase):
old_default = boolean_field.default
try:
boolean_field.default = NOT_PROVIDED
- # check patch was succcessful
+ # check patch was successful
self.assertFalse(boolean_field.has_default())
b = BooleanModel()
self.assertIsNone(b.bfield)